add organization member handler (#537)

This commit is contained in:
Michael Quigley
2024-12-09 14:32:43 -05:00
parent 6fb69c59d2
commit 37e945d603
12 changed files with 228 additions and 3 deletions

View File

@ -932,6 +932,9 @@ func init() {
"properties": {
"email": {
"type": "string"
},
"token": {
"type": "string"
}
}
}
@ -944,6 +947,9 @@ func init() {
"401": {
"description": "unauthorized"
},
"404": {
"description": "not found"
},
"500": {
"description": "internal server error"
}
@ -2992,6 +2998,9 @@ func init() {
"properties": {
"email": {
"type": "string"
},
"token": {
"type": "string"
}
}
}
@ -3004,6 +3013,9 @@ func init() {
"401": {
"description": "unauthorized"
},
"404": {
"description": "not found"
},
"500": {
"description": "internal server error"
}