Skip to content

Commit

Permalink
Extend ProjectsNamespace with avatar_url and web_url
Browse files Browse the repository at this point in the history
  • Loading branch information
Narek Vardanjan committed Oct 26, 2020
1 parent 16fc6f6 commit bebc898
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions projects.go
Expand Up @@ -134,11 +134,13 @@ type Repository struct {

// ProjectNamespace represents a project namespace.
type ProjectNamespace struct {
ID int `json:"id"`
Name string `json:"name"`
Path string `json:"path"`
Kind string `json:"kind"`
FullPath string `json:"full_path"`
ID int `json:"id"`
Name string `json:"name"`
Path string `json:"path"`
Kind string `json:"kind"`
FullPath string `json:"full_path"`
AvatarURL string `json:"avatar_url"`
WebURL string `json:"web_url"`
}

// StorageStatistics represents a statistics record for a group or project.
Expand Down

0 comments on commit bebc898

Please sign in to comment.