mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
15 lines
326 B
Go
15 lines
326 B
Go
package controllers
|
|
|
|
import "os"
|
|
|
|
// RepositoryController handles request to /repository
|
|
type RepositoryController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get renders repository page
|
|
func (rc *RepositoryController) Get() {
|
|
rc.Data["HarborRegUrl"] = os.Getenv("HARBOR_REG_URL")
|
|
rc.Forward("page_title_repository", "repository.htm")
|
|
}
|