удаление учетной записи с сервера

This commit is contained in:
2025-02-19 14:34:42 +03:00
parent 8215388bc6
commit 7a9c70f396
6 changed files with 43 additions and 8 deletions

View File

@@ -66,9 +66,12 @@ public enum ServerCode {
GetUserAccountByKey,
GetUserAccountByEmail,
EditUserAccount,
PublishUserAccount;
PublishUserAccount,
DeleteUserAccount;
public String getDescription(){
switch (this){
case DeleteUserAccount:
return "Удаление учётной записи на сервере";
case PublishUserAccount:
return "Создание учётной записи на сервере";
case EditUserAccount: