Revert "chore: remove BaseDomain on WorkspacePlugin (#30958)"
This reverts commit df6dce26e9.
This commit is contained in:
parent
a6b8a3440e
commit
45caf60b29
|
|
@ -1,5 +1,6 @@
|
|||
package com.appsmith.server.domains;
|
||||
|
||||
import com.appsmith.external.models.BaseDomain;
|
||||
import com.appsmith.server.dtos.WorkspacePluginStatus;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
|
@ -14,7 +15,7 @@ import lombok.ToString;
|
|||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
public class WorkspacePlugin {
|
||||
public class WorkspacePlugin extends BaseDomain {
|
||||
|
||||
String pluginId;
|
||||
|
||||
|
|
|
|||
|
|
@ -134,6 +134,7 @@ public class PluginServiceCEImpl extends BaseService<PluginRepository, Plugin, S
|
|||
}
|
||||
|
||||
List<String> pluginIds = org.getPlugins().stream()
|
||||
.filter(plugin -> !plugin.isDeleted())
|
||||
.map(WorkspacePlugin::getPluginId)
|
||||
.collect(Collectors.toList());
|
||||
Query query = new Query();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user