harbor/controllers/ng/accountsetting.go
2016-05-23 15:43:15 +08:00

12 lines
282 B
Go

package ng
// AccountSettingController handles request to /ng/account_setting
type AccountSettingController struct {
BaseController
}
// Get renders the account settings page
func (asc *AccountSettingController) Get() {
asc.Forward("Account Settings", "account-settings.htm")
}