Merge branch 'dev-lwl/share_redirect_urls' into test
This commit is contained in:
commit
671b53f8c7
|
@ -12,8 +12,15 @@ func ColdConfigHandler(ctx *gin.Context) {
|
|||
logger.Error("apollo.GetStringValue fail, key: %v, err: %v", "share_redirect_url", err)
|
||||
}
|
||||
|
||||
shareRedirectUrls := make([]string, 0)
|
||||
err = apollo.GetJson("share_redirect_urls", &shareRedirectUrls, apollo.ApolloOpts().SetNamespace("application"))
|
||||
if err != nil {
|
||||
logger.Error("apollo.GetJson fail, key: %v, err: %v", "share_redirect_url", err)
|
||||
}
|
||||
|
||||
data := map[string]any{
|
||||
"share_redirect_url": shareRedirectUrl,
|
||||
"share_redirect_url": shareRedirectUrl,
|
||||
"share_redirect_urls": shareRedirectUrls,
|
||||
}
|
||||
ReplyOk(ctx, data)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue