Hide the registration button depending on the setting

This commit is contained in:
Raphael Randschau 2015-02-05 17:09:38 +01:00
parent 79f3281548
commit 3c65265871
2 changed files with 3 additions and 0 deletions

View file

@ -41,6 +41,7 @@ func Home(ctx *middleware.Context) {
ctx.Data["OauthEnabled"] = true
ctx.Data["OauthService"] = setting.OauthService
}
ctx.Data["ShowRegistrationButton"] = setting.Service.ShowRegistrationButton
ctx.Data["PageIsHome"] = true
ctx.HTML(200, HOME)