summaryrefslogtreecommitdiffstats
path: root/src/Common/UserManager.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-08-16 03:01:12 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-08-16 03:01:12 +0200
commitb6f7d36a544a7a8c18c815ef4158cf684108d06d (patch)
tree417e12f98f5b2c6d03bd740999532e61d60a664a /src/Common/UserManager.h
parentc1cb92bc30256171bfafb22cf8512142afee97cf (diff)
downloadmad-b6f7d36a544a7a8c18c815ef4158cf684108d06d.tar
mad-b6f7d36a544a7a8c18c815ef4158cf684108d06d.zip
Passwörter können gesetzt werden
Diffstat (limited to 'src/Common/UserManager.h')
-rw-r--r--src/Common/UserManager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Common/UserManager.h b/src/Common/UserManager.h
index c70894a..b966662 100644
--- a/src/Common/UserManager.h
+++ b/src/Common/UserManager.h
@@ -115,8 +115,6 @@ class UserManager : public Core::Configurable, private boost::noncopyable {
boost::shared_ptr<const std::multimap<unsigned long, unsigned long> > getFullUserGroupList(boost::posix_time::ptime *timestamp = 0) throw(Core::Exception);
- void setPassword(unsigned long uid, const std::string &password) throw(Core::Exception);
-
void checkUserInfo(const UserInfo &userInfo) throw(Core::Exception);
void addUser(const UserInfo &userInfo) throw(Core::Exception);
void updateUser(unsigned long uid, const UserInfo &userInfo) throw(Core::Exception);
@@ -129,6 +127,8 @@ class UserManager : public Core::Configurable, private boost::noncopyable {
void addUserToGroup(unsigned long uid, unsigned long gid) throw(Core::Exception);
void deleteUserFromGroup(unsigned long uid, unsigned long gid) throw(Core::Exception);
+
+ void setPassword(unsigned long uid, const std::string &password) throw(Core::Exception);
};
}