1
0
mirror of https://github.com/goharbor/harbor.git synced 2025-03-01 02:01:19 +01:00
harbor/controllers/dashboard.go
2016-06-28 23:42:05 +08:00

12 lines
257 B
Go

package controllers
// DashboardController handles requests to /dashboard
type DashboardController struct {
BaseController
}
// Get renders the dashboard page
func (dc *DashboardController) Get() {
dc.Forward("page_title_dashboard", "dashboard.htm")
}