2016-06-16 14:10:35 +08:00
|
|
|
package controllers
|
2016-05-12 18:30:01 +08:00
|
|
|
|
2016-06-16 14:10:35 +08:00
|
|
|
// AdminOptionController handles requests to /admin_option
|
2016-05-12 18:30:01 +08:00
|
|
|
type AdminOptionController struct {
|
|
|
|
|
BaseController
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-23 15:43:15 +08:00
|
|
|
// Get renders the admin options page
|
2016-05-12 18:30:01 +08:00
|
|
|
func (aoc *AdminOptionController) Get() {
|
2016-06-28 23:42:05 +08:00
|
|
|
aoc.Forward("page_title_admin_option", "admin-options.htm")
|
2016-05-12 18:30:01 +08:00
|
|
|
}
|