mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01: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")
|
|
}
|