File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ type Repository struct {
26
26
FullName string `json:"full_name"`
27
27
Description string `json:"description"`
28
28
Private bool `json:"private"`
29
+ Unlisted bool `json:"unlisted"`
29
30
Fork bool `json:"fork"`
30
31
Parent * Repository `json:"parent"`
31
32
Empty bool `json:"empty"`
@@ -65,6 +66,7 @@ type CreateRepoOption struct {
65
66
Name string `json:"name" binding:"Required;AlphaDashDot;MaxSize(100)"`
66
67
Description string `json:"description" binding:"MaxSize(255)"`
67
68
Private bool `json:"private"`
69
+ Unlisted bool `json:"unlisted"`
68
70
AutoInit bool `json:"auto_init"`
69
71
Gitignores string `json:"gitignores"`
70
72
License string `json:"license"`
@@ -111,6 +113,7 @@ type MigrateRepoOption struct {
111
113
RepoName string `json:"repo_name" binding:"Required"`
112
114
Mirror bool `json:"mirror"`
113
115
Private bool `json:"private"`
116
+ Unlisted bool `json:"unlisted"`
114
117
Description string `json:"description"`
115
118
}
116
119
You can’t perform that action at this time.
0 commit comments