Skip to content

Commit

Permalink
Updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
COMTOP1 committed Oct 1, 2024
1 parent f0ee6f0 commit 66a464a
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions swagger/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -1934,6 +1934,66 @@ const docTemplate = `{
}
}
},
"/v1/internal/people/user/{email}": {
"get": {
"description": "Get a basic user object by email.",
"produces": [
"application/json"
],
"tags": [
"people-user"
],
"summary": "Get a user by email",
"operationId": "get-user-email",
"parameters": [
{
"type": "integer",
"description": "Email",
"name": "email",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/people.User"
}
}
}
}
},
"/v1/internal/people/user/{email}/full": {
"get": {
"description": "Get a complete user object by email.",
"produces": [
"application/json"
],
"tags": [
"people-user"
],
"summary": "Get a full user by email",
"operationId": "get-user-email-full",
"parameters": [
{
"type": "integer",
"description": "Email",
"name": "email",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/people.User"
}
}
}
}
},
"/v1/internal/people/user/{userid}": {
"get": {
"description": "Get a basic user object by ID.",
Expand Down

0 comments on commit 66a464a

Please sign in to comment.