new lib version [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2021-01-08 20:18:27 +00:00
parent b9e573311c
commit 7efff57b5d
4 changed files with 16 additions and 16 deletions

View File

@@ -6,7 +6,7 @@ class UserService {
/**
* Get all
* Lists all users. <br> This includes their groups and permissions directly granted to them (if existing/associated).
* @returns User
* @returns ResponseUser
* @throws ApiError
*/
static async userControllerGetAll() {
@@ -35,7 +35,7 @@ class UserService {
* Get one
* Lists all information about the user whose id got provided. <br> Please remember that only permissions granted directly to the user will show up here, not permissions inherited from groups.
* @param id
* @returns User
* @returns ResponseUser
* @throws ApiError
*/
static async userControllerGetOne(id) {
@@ -50,7 +50,7 @@ class UserService {
* Update the user whose id you provided. <br> To change the permissions directly granted to the user please use /api/permissions instead. <br> Please remember that ids can't be changed.
* @param id
* @param requestBody UpdateUser
* @returns User
* @returns ResponseUser
* @throws ApiError
*/
static async userControllerPut(id, requestBody) {
@@ -66,7 +66,7 @@ class UserService {
* Delete the user whose id you provided. <br> If there are any permissions directly granted to the user they will get deleted as well. <br> If no user with this id exists it will just return 204(no content).
* @param id
* @param force
* @returns User
* @returns ResponseUser
* @returns ResponseEmpty
* @throws ApiError
*/