File tree 2 files changed +6
-4
lines changed
app/server/appsmith-server/src/main/java/com/appsmith/server/plugins/solutions
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
package com .appsmith .server .plugins .solutions ;
2
2
3
- import com .fasterxml .jackson .databind .JsonNode ;
4
3
import reactor .core .publisher .Mono ;
5
4
5
+ import java .util .List ;
6
+
6
7
public interface PluginSchemaSolutionCE {
7
- Mono <JsonNode > getPluginSchema (String pluginId );
8
+ Mono <List < Object > > getPluginSchema (String pluginId );
8
9
}
Original file line number Diff line number Diff line change 1
1
package com .appsmith .server .plugins .solutions ;
2
2
3
- import com .fasterxml .jackson .databind .JsonNode ;
4
3
import org .springframework .stereotype .Component ;
5
4
import reactor .core .publisher .Mono ;
6
5
6
+ import java .util .List ;
7
+
7
8
@ Component
8
9
public class PluginSchemaSolutionCEImpl implements PluginSchemaSolutionCE {
9
10
@ Override
10
- public Mono <JsonNode > getPluginSchema (String pluginId ) {
11
+ public Mono <List < Object > > getPluginSchema (String pluginId ) {
11
12
return Mono .empty ();
12
13
}
13
14
}
You can’t perform that action at this time.
0 commit comments