mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 16:42:13 +11:00
cleaning code
This commit is contained in:
parent
ef0e4859d1
commit
6a1fbe23a1
1 changed files with 4 additions and 4 deletions
|
|
@ -98,17 +98,17 @@ public:
|
||||||
});
|
});
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
int_fast16_t VerifyPassword(const std::string &name, const std::string &attempt) const
|
int_fast8_t VerifyPassword(const std::string &name, const std::string &attempt) const
|
||||||
{
|
{
|
||||||
int_fast16_t res = -1;
|
int_fast8_t res = -1;
|
||||||
users.if_contains(name, [&res, &attempt](const User &u) {
|
users.if_contains(name, [&res, &attempt](const User &u) {
|
||||||
res = u.password == attempt;
|
res = u.password == attempt;
|
||||||
});
|
});
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
int_fast16_t ChangePassword(const std::string &name, const std::string &attempt, std::string &&new_pass)
|
int_fast8_t ChangePassword(const std::string &name, const std::string &attempt, std::string &&new_pass)
|
||||||
{
|
{
|
||||||
int_fast16_t res = -1;
|
int_fast8_t res = -1;
|
||||||
users.modify_if(name, [&res, &attempt, &new_pass](User &u) {
|
users.modify_if(name, [&res, &attempt, &new_pass](User &u) {
|
||||||
res = (u.password == attempt);
|
res = (u.password == attempt);
|
||||||
if (res)
|
if (res)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue