Skip to content

Commit

Permalink
Fixed merging conflicts with main.
Browse files Browse the repository at this point in the history
  • Loading branch information
JVT038 committed Feb 25, 2024
1 parent 3b32135 commit 6d34481
Showing 1 changed file with 15 additions and 19 deletions.
34 changes: 15 additions & 19 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
},
Expand Down Expand Up @@ -237,7 +237,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
},
Expand Down Expand Up @@ -291,7 +291,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
}
Expand Down Expand Up @@ -427,7 +427,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
},
Expand Down Expand Up @@ -477,7 +477,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
},
Expand Down Expand Up @@ -527,7 +527,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
}
Expand Down Expand Up @@ -677,7 +677,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
},
Expand Down Expand Up @@ -745,7 +745,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
},
Expand Down Expand Up @@ -813,7 +813,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
},
Expand Down Expand Up @@ -871,7 +871,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
}
Expand Down Expand Up @@ -980,7 +980,7 @@
},
"security": [
{
"authToken": []
"token": []
}
]
}
Expand Down Expand Up @@ -1082,20 +1082,16 @@
"type": "object",
"properties": {
"authenticated": {
"type": "boolean",
"type": "string",
"description": "True if authenticated, false if unauthenticated."
},
"username": {
"type": "string",
"description": "The username of the authenticated user. It's empty if the user is unauthenticated."
},
"userId": {
"type": "integer",
"type": "string",
"description": "The ID of the authenticated user. It's empty if the user is unauthenticated."
},
"isAdmin": {
"type": "boolean",
"description": "True if the user is an admin, False if the user isn't."
}
}
}
Expand Down Expand Up @@ -1409,12 +1405,12 @@
}
},
"securitySchemes": {
"authToken": {
"token": {
"type": "apiKey",
"name": "X-Auth-Token",
"in": "header"
},
"cookieauth": {
"cookie": {
"type": "apiKey",
"name": "id",
"in": "cookie"
Expand Down

0 comments on commit 6d34481

Please sign in to comment.