mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
12 lines
257 B
Go
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")
|
|
}
|