Add permission description for API to add repo collaborator (#31744)

Fix #31552.
pull/31742/head^2
Jason Song 4 months ago committed by GitHub
parent a33e74d40d
commit 333c9ed8ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      modules/structs/repo_collaborator.go
  2. 5
      templates/swagger/v1_json.tmpl

@ -5,6 +5,7 @@ package structs
// AddCollaboratorOption options when adding a user as a collaborator of a repository
type AddCollaboratorOption struct {
// enum: read,write,admin
Permission *string `json:"permission"`
}

@ -18484,6 +18484,11 @@
"properties": {
"permission": {
"type": "string",
"enum": [
"read",
"write",
"admin"
],
"x-go-name": "Permission"
}
},

Loading…
Cancel
Save