diff options
Diffstat (limited to 'internal/route/dev')
-rw-r--r-- | internal/route/dev/template.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/route/dev/template.go b/internal/route/dev/template.go index 42b0ccc2..8f59e923 100644 --- a/internal/route/dev/template.go +++ b/internal/route/dev/template.go @@ -20,5 +20,5 @@ func TemplatePreview(c *context.Context) { c.Data["ResetPwdCodeLives"] = conf.Auth.ResetPasswordCodeLives / 60 c.Data["CurDbValue"] = "" - c.Success( (c.Params("*"))) + c.Success(c.Params("*")) } |