WIP: remove the old database abstraction layer
remove such classes: - DbBase - DbConn - DbTextStream - Db while here: - remove: TextStream, SLog, TexTextStream
This commit is contained in:
@@ -55,17 +55,17 @@ public:
|
||||
void MakeGet();
|
||||
void MakePost();
|
||||
|
||||
bool IsPasswordCorrect(const std::wstring & pass, const std::wstring & conf_pass, bool use_ses_log = false);
|
||||
bool IsPasswordCorrect(const std::wstring & pass, const std::wstring & conf_pass);
|
||||
bool ChangePassword(long user_id, const std::wstring & new_password);
|
||||
bool ResetPassword(const std::wstring & login, long code, bool use_ses_log = false, bool only_check_access = false);
|
||||
bool ResetPassword(const std::wstring & login, long code, bool only_check_access = false);
|
||||
|
||||
private:
|
||||
|
||||
void ChangePassword(User * puser);
|
||||
|
||||
bool ResetPassword(User * puser, long code, bool use_ses_log);
|
||||
bool SetNewPassword(User * puser, bool use_ses_log);
|
||||
bool ResetPassword(User * puser, long code, bool use_ses_log, bool only_check_access);
|
||||
bool ResetPassword(User * puser, long code);
|
||||
bool SetNewPassword(User * puser);
|
||||
bool ResetPassword(User * puser, long code, bool only_check_access);
|
||||
void ResetPassword();
|
||||
void ShowResetPasswordForm();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user