harbor/controllers/dashboard.go

12 lines
257 B
Go
Raw Normal View History

package controllers
2016-04-11 08:07:16 +00:00
// DashboardController handles requests to /dashboard
2016-04-11 08:07:16 +00:00
type DashboardController struct {
BaseController
}
2016-05-23 07:43:15 +00:00
// Get renders the dashboard page
2016-04-11 08:07:16 +00:00
func (dc *DashboardController) Get() {
2016-06-28 15:42:05 +00:00
dc.Forward("page_title_dashboard", "dashboard.htm")
2016-04-11 08:07:16 +00:00
}