Synchronizing API and documentation updates

This commit is contained in:
gitnexbot
2023-03-14 00:03:56 +00:00
parent d0526fe0bd
commit 409c3c1cbc
3 changed files with 9 additions and 4 deletions
@@ -130,10 +130,13 @@ public interface AdminApi {
* Delete a user
*
* @param username username of user to delete (required)
* @param purge purge the user from the system completely (optional)
* @return Call<Void>
*/
@DELETE("admin/users/{username}")
Call<Void> adminDeleteUser(@retrofit2.http.Path("username") String username);
Call<Void> adminDeleteUser(
@retrofit2.http.Path("username") String username,
@retrofit2.http.Query("purge") Boolean purge);
/**
* Delete a user&#x27;s public key