mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
12 lines
279 B
Go
12 lines
279 B
Go
package controllers
|
|
|
|
// AdminOptionController handles requests to /admin_option
|
|
type AdminOptionController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get renders the admin options page
|
|
func (aoc *AdminOptionController) Get() {
|
|
aoc.Forward("page_title_admin_option", "admin-options.htm")
|
|
}
|