harbor/controllers/dashboard.go

12 lines
257 B
Go
Raw Normal View History

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