mirror of
https://github.com/goharbor/harbor
synced 2025-04-10 15:56:18 +00:00
12 lines
288 B
Go
12 lines
288 B
Go
package controllers
|
|
|
|
// AccountSettingController handles request to /account_setting
|
|
type AccountSettingController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get renders the account settings page
|
|
func (asc *AccountSettingController) Get() {
|
|
asc.Forward("Account Settings", "account-settings.htm")
|
|
}
|