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

lookup_path.go « api « gitlab « source « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b04076386b138dfd481ec2633f46f2c3a2ab9d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package api

// LookupPath represents a lookup path for a virtual domain
type LookupPath struct {
	ProjectID     int    `json:"project_id,omitempty"`
	AccessControl bool   `json:"access_control,omitempty"`
	HTTPSOnly     bool   `json:"https_only,omitempty"`
	Prefix        string `json:"prefix,omitempty"`
	Source        struct {
		Type string `json:"type,omitempty"`
		Path string `json:"path,omitempty"`
	}
}