feat(server): require auth for more endpoints (#2092)

* feat(server): require auth for more endpoints

* dev: add authorization header to profile image on mobile

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
Michel Heusschen
2023-03-27 16:38:54 +02:00
committed by GitHub
parent 4e526dfaae
commit 089dbdbd7e
9 changed files with 129 additions and 48 deletions

View File

@@ -943,6 +943,14 @@
},
"tags": [
"Server Info"
],
"security": [
{
"bearer": []
},
{
"cookie": []
}
]
}
},
@@ -1482,6 +1490,14 @@
},
"tags": [
"User"
],
"security": [
{
"bearer": []
},
{
"cookie": []
}
]
}
},
@@ -1694,6 +1710,14 @@
},
"tags": [
"User"
],
"security": [
{
"bearer": []
},
{
"cookie": []
}
]
}
},