mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 10:10:12 +01:00
12 lines
263 B
Go
12 lines
263 B
Go
package ng
|
|
|
|
// AdminOptionController handles requests to /ng/admin_option
|
|
type AdminOptionController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get renders the admin options page
|
|
func (aoc *AdminOptionController) Get() {
|
|
aoc.Forward("Admin Options", "admin-options.htm")
|
|
}
|