Fresh dist
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2023-02-02 16:14:10 +01:00
parent e996375677
commit ad90844846
43 changed files with 270 additions and 267 deletions

View File

@@ -6,7 +6,7 @@ class MeService {
/**
* Get
* Lists all information about yourself.
* @result ResponseUser
* @returns ResponseUser
* @throws ApiError
*/
static async meControllerGet() {
@@ -20,7 +20,7 @@ class MeService {
* Put
* Update the yourself. <br> You can't edit your own permissions or group memberships here - Please use the /api/users/:id enpoint instead. <br> Please remember that ids can't be changed.
* @param requestBody UpdateUser
* @result ResponseUser
* @returns ResponseUser
* @throws ApiError
*/
static async meControllerPut(requestBody) {
@@ -35,7 +35,7 @@ class MeService {
* Remove
* Delete yourself. <br> You have to confirm your decision by providing the ?force=true query param. <br> If there are any permissions directly granted to you they will get deleted as well.
* @param force
* @result ResponseUser
* @returns ResponseUser
* @throws ApiError
*/
static async meControllerRemove(force) {
@@ -51,7 +51,7 @@ class MeService {
/**
* Get permissions
* Lists all permissions granted to the you sorted into directly granted and inherited as permission response objects.
* @result ResponseUserPermissions
* @returns ResponseUserPermissions
* @throws ApiError
*/
static async meControllerGetPermissions() {