harbor/controllers/dashboard.go

12 lines
246 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() {
dc.Forward("Dashboard", "dashboard.htm")
}