Skip to content

Commit 066572b

Browse files
authored
Merge pull request #12 from Nkmol/add-missing-slug-property-in-repository-model
feat(repository): add missing slug property
2 parents 46ec154 + 5a5354d commit 066572b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

model_repository.go

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ type Repository struct {
2525
Scm string `json:"scm,omitempty"`
2626
Owner *Account `json:"owner,omitempty"`
2727
Name string `json:"name,omitempty"`
28+
Slug string `json:"slug,omitempty"`
2829
Description string `json:"description,omitempty"`
2930
CreatedOn time.Time `json:"created_on,omitempty"`
3031
UpdatedOn time.Time `json:"updated_on,omitempty"`

0 commit comments

Comments
 (0)