mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-04 16:52:17 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -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's public key
|
||||
|
||||
Reference in New Issue
Block a user