harbor/controllers/ng/adminoption.go

12 lines
263 B
Go
Raw Normal View History

package ng
2016-05-23 09:43:15 +02:00
// AdminOptionController handles requests to /ng/admin_option
type AdminOptionController struct {
BaseController
}
2016-05-23 09:43:15 +02:00
// Get renders the admin options page
func (aoc *AdminOptionController) Get() {
aoc.Forward("Admin Options", "admin-options.htm")
}