Skip to content

Commit 5dfea2a

Browse files
kumforobinv8
authored andcommitted
fix(embed):Fixed #189, Closes #189. add GetEmbedConfigs to fixed type conflict. It will be resolved when Answer v1.4.0 release.
1 parent a826cbf commit 5dfea2a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

embed-basic/basic.go

+13
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import (
2323
"embed"
2424
"encoding/json"
2525
"github.com/apache/incubator-answer-plugins/util"
26+
"github.com/gin-gonic/gin"
2627

2728
"github.com/apache/incubator-answer-plugins/embed-basic/i18n"
2829
"github.com/apache/incubator-answer/plugin"
@@ -163,3 +164,15 @@ func (e *Embed) ConfigReceiver(config []byte) error {
163164
e.Config = c
164165
return nil
165166
}
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+
}

0 commit comments

Comments
 (0)