harbor/controllers/ng/accountsetting.go

12 lines
282 B
Go
Raw Normal View History

package ng
2016-05-23 09:43:15 +02:00
// AccountSettingController handles request to /ng/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")
}