mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Add permission description for API to add repo collaborator (#31744)
Fix #31552. (cherry picked from commit 333c9ed8cab961b6dd58b04edc47a57dc4d6dbab)
This commit is contained in:
parent
6844258c67
commit
f6b1407e4c
2 changed files with 6 additions and 0 deletions
|
@ -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"`
|
||||
}
|
||||
|
||||
|
|
5
templates/swagger/v1_json.tmpl
generated
5
templates/swagger/v1_json.tmpl
generated
|
@ -19925,6 +19925,11 @@
|
|||
"properties": {
|
||||
"permission": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"read",
|
||||
"write",
|
||||
"admin"
|
||||
],
|
||||
"x-go-name": "Permission"
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue