gateway api: return project visibility
This commit is contained in:
parent
83f6ebe95f
commit
d2d1a5fb65
|
@ -244,6 +244,7 @@ type ProjectResponse struct {
|
|||
Name string `json:"name,omitempty"`
|
||||
Path string `json:"path,omitempty"`
|
||||
ParentPath string `json:"parent_path,omitempty"`
|
||||
Visibility types.Visibility `json:"visibility,omitempty"`
|
||||
GlobalVisibility string `json:"global_visibility,omitempty"`
|
||||
}
|
||||
|
||||
|
@ -253,6 +254,7 @@ func createProjectResponse(r *csapi.Project) *ProjectResponse {
|
|||
Name: r.Name,
|
||||
Path: r.Path,
|
||||
ParentPath: r.ParentPath,
|
||||
Visibility: r.Visibility,
|
||||
GlobalVisibility: string(r.GlobalVisibility),
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue