mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-19 08:45:27 +01:00
12 lines
282 B
Go
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")
|
|
}
|