add ts-debug option to makefile for including typescript and sourcemaps

This commit is contained in:
Harvey Tindall
2020-09-23 20:14:16 +01:00
parent 9bd7fca95e
commit ce844e0574
13 changed files with 1629 additions and 2 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ func (app *appContext) InviteProxy(gc *gin.Context) {
gc.HTML(http.StatusOK, "form.html", gin.H{
"bs5": app.config.Section("ui").Key("bs5").MustBool(false),
"cssFile": app.cssFile,
"contactMessage": app.config.Section("ui").Key("contac_message").String(),
"contactMessage": app.config.Section("ui").Key("contact_message").String(),
"helpMessage": app.config.Section("ui").Key("help_message").String(),
"successMessage": app.config.Section("ui").Key("success_message").String(),
"jfLink": app.config.Section("jellyfin").Key("public_server").String(),
@@ -46,7 +46,7 @@ func (app *appContext) InviteProxy(gc *gin.Context) {
gc.HTML(404, "invalidCode.html", gin.H{
"bs5": app.config.Section("ui").Key("bs5").MustBool(false),
"cssFile": app.cssFile,
"contactMessage": app.config.Section("ui").Key("contac_message").String(),
"contactMessage": app.config.Section("ui").Key("contact_message").String(),
})
}
}