harbor/controllers/adminoption.go

12 lines
279 B
Go
Raw Normal View History

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