harbor/controllers/accountsetting.go

12 lines
288 B
Go
Raw Normal View History

package controllers
// AccountSettingController handles request to /account_setting
type AccountSettingController struct {
BaseController
}
2016-05-23 09:43:15 +02:00
// Get renders the account settings page
func (asc *AccountSettingController) Get() {
asc.Forward("Account Settings", "account-settings.htm")
}