summaryrefslogtreecommitdiff
path: root/src/user.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/user.hpp')
-rw-r--r--src/user.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/user.hpp b/src/user.hpp
index 633af60..e6a4e35 100644
--- a/src/user.hpp
+++ b/src/user.hpp
@@ -10,8 +10,11 @@ namespace apps {
class user : public master {
public:
user( strusCms &cms );
- bool check_login( std::string user, std::string password );
- bool user_exists( std::string user );
+ bool check_login( const std::string user, const std::string password );
+ bool user_exists( const std::string user );
+ void delete_user( const std::string user );
+ std::string registration_start( const std::string user, const std::string password, const std::string email );
+ bool verify_registration_code( const std::string code );
public:
std::string last_captcha;