Add CLI and Web endpoints to change local login account password

This commit is contained in:
Akkadius
2019-08-04 05:04:34 -05:00
parent b0d33f094d
commit ba6009730b
11 changed files with 204 additions and 44 deletions
+11
View File
@@ -59,6 +59,17 @@ public:
const std::string &in_account_password,
const std::string &source_loginserver = "local"
);
/**
* @param in_account_username
* @param in_account_password
* @return
*/
static bool UpdateLoginserverUserCredentials(
const std::string &in_account_username,
const std::string &in_account_password,
const std::string &source_loginserver = "local"
);
};