mirror of
https://github.com/goharbor/harbor
synced 2025-04-09 03:02:47 +00:00
12 lines
269 B
Go
12 lines
269 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("Admin Options", "admin-options.htm")
|
|
}
|