File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import (
23
23
"embed"
24
24
"encoding/json"
25
25
"github.com/apache/incubator-answer-plugins/util"
26
+ "github.com/gin-gonic/gin"
26
27
27
28
"github.com/apache/incubator-answer-plugins/embed-basic/i18n"
28
29
"github.com/apache/incubator-answer/plugin"
@@ -163,3 +164,15 @@ func (e *Embed) ConfigReceiver(config []byte) error {
163
164
e .Config = c
164
165
return nil
165
166
}
167
+
168
+ // GetEmbedConfigs get embed configs
169
+ func (e * Embed ) GetEmbedConfigs (ctx * gin.Context ) (embedConfigs []* plugin.EmbedConfig , err error ) {
170
+ embedConfigs = make ([]* plugin.EmbedConfig , 0 )
171
+ for _ , field := range e .ConfigFields () {
172
+ embedConfigs = append (embedConfigs , & plugin.EmbedConfig {
173
+ Platform : field .Name ,
174
+ Enable : field .Value .(bool ),
175
+ })
176
+ }
177
+ return
178
+ }
You can’t perform that action at this time.
0 commit comments