1
0
mirror of https://github.com/goharbor/harbor.git synced 2025-01-01 13:37:47 +01:00
harbor/controllers/accountsetting.go

12 lines
298 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() {
2016-06-28 17:42:05 +02:00
asc.Forward("page_title_account_setting", "account-settings.htm")
}