|
|
@@ -52,6 +52,7 @@ func Settings(c *context.Context) {
|
|
|
c.Data["email"] = c.User.Email
|
|
|
c.Data["website"] = c.User.Website
|
|
|
c.Data["location"] = c.User.Location
|
|
|
+ c.Data["status"] = c.User.Status
|
|
|
c.Data["themecolor"] = c.User.ThemeColor
|
|
|
c.Data["is_beta"] = c.User.IsBeta
|
|
|
c.Data["show_sponsors"] = c.User.ShowSponsors
|
|
|
@@ -108,6 +109,7 @@ func SettingsPost(c *context.Context, f form.UpdateProfile) {
|
|
|
c.User.Email = f.Email
|
|
|
c.User.Website = f.Website
|
|
|
c.User.Location = f.Location
|
|
|
+ c.User.Status = f.Status
|
|
|
c.User.ThemeColor = f.ThemeColor
|
|
|
c.User.IsBeta = f.IsBeta
|
|
|
c.User.ShowSponsors = f.ShowSponsors
|