Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project.go « domain « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ea7306f85d7b3a782353bb3bdad889ed6fc489d (plain)
1
2
3
4
5
6
7
8
9
10
package domain

// Project holds a domain / project configuration
type Project struct {
	LookupPath         string
	IsNamespaceProject bool
	IsHTTPSOnly        bool
	HasAccessControl   bool
	ID                 uint64
}