New option to hide feedback button on pages
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
7ff56ca762
commit
0bdb1c4c04
@ -20,14 +20,20 @@ var (
|
|||||||
indexTpl *template.Template
|
indexTpl *template.Template
|
||||||
CustomHeadHTML = ""
|
CustomHeadHTML = ""
|
||||||
CustomBodyHTML = ""
|
CustomBodyHTML = ""
|
||||||
|
HideVoxPeople = false
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
flag.StringVar(&CustomHeadHTML, "custom-head-html", CustomHeadHTML, "Add custom HTML right before </head>")
|
flag.StringVar(&CustomHeadHTML, "custom-head-html", CustomHeadHTML, "Add custom HTML right before </head>")
|
||||||
flag.StringVar(&CustomBodyHTML, "custom-body-html", CustomBodyHTML, "Add custom HTML right before </body>")
|
flag.StringVar(&CustomBodyHTML, "custom-body-html", CustomBodyHTML, "Add custom HTML right before </body>")
|
||||||
|
flag.BoolVar(&HideVoxPeople, "hide-feedback-button", HideVoxPeople, "Hide the icon on page that permit to give feedback")
|
||||||
}
|
}
|
||||||
|
|
||||||
func DeclareRoutes(cfg *config.Options, router *gin.Engine) {
|
func DeclareRoutes(cfg *config.Options, router *gin.Engine) {
|
||||||
|
if HideVoxPeople {
|
||||||
|
CustomHeadHTML += "<style>#voxpeople { display: none !important; }</style>"
|
||||||
|
}
|
||||||
|
|
||||||
if cfg.DevProxy != "" {
|
if cfg.DevProxy != "" {
|
||||||
router.GET("/.svelte-kit/*_", serveOrReverse("", cfg))
|
router.GET("/.svelte-kit/*_", serveOrReverse("", cfg))
|
||||||
router.GET("/node_modules/*_", serveOrReverse("", cfg))
|
router.GET("/node_modules/*_", serveOrReverse("", cfg))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user