mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-05 19:32:25 +00:00
[Cleanup] Remove UpdateLoginserverWorldAdminAccountPasswordById() from account_management.cpp (#3115)
# Notes - This is unused.
This commit is contained in:
parent
180c3088ca
commit
491b358e28
@ -260,27 +260,6 @@ bool AccountManagement::UpdateLoginserverWorldAdminAccountPasswordByName(
|
|||||||
return updated_account;
|
return updated_account;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param in_account_id
|
|
||||||
* @param in_account_password_hash
|
|
||||||
*/
|
|
||||||
bool AccountManagement::UpdateLoginserverWorldAdminAccountPasswordById(
|
|
||||||
uint32 in_account_id,
|
|
||||||
const std::string &in_account_password_hash
|
|
||||||
)
|
|
||||||
{
|
|
||||||
bool updated_account = server.db->UpdateLoginWorldAdminAccountPassword(in_account_id, in_account_password_hash);
|
|
||||||
|
|
||||||
LogInfo(
|
|
||||||
"[{}] account_name [{}] status [{}]",
|
|
||||||
__func__,
|
|
||||||
in_account_id,
|
|
||||||
(updated_account ? "success" : "failed")
|
|
||||||
);
|
|
||||||
|
|
||||||
return updated_account;
|
|
||||||
}
|
|
||||||
|
|
||||||
constexpr int REQUEST_TIMEOUT_MS = 1500;
|
constexpr int REQUEST_TIMEOUT_MS = 1500;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -80,16 +80,6 @@ public:
|
|||||||
const std::string &in_account_password
|
const std::string &in_account_password
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
* @param in_account_id
|
|
||||||
* @param in_account_password_hash
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
static bool UpdateLoginserverWorldAdminAccountPasswordById(
|
|
||||||
uint32 in_account_id,
|
|
||||||
const std::string &in_account_password_hash
|
|
||||||
);
|
|
||||||
|
|
||||||
static uint32 HealthCheckUserLogin();
|
static uint32 HealthCheckUserLogin();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user