diff --git a/sso/services/mumble/__init__.py b/sso/services/mumble/__init__.py index a365a57..f6f3faf 100644 --- a/sso/services/mumble/__init__.py +++ b/sso/services/mumble/__init__.py @@ -69,6 +69,10 @@ class MumbleService(BaseService): mumbleuser.password = password mumbleuser.save() + def reset_password(self, uid, password): + """ Reset the user's password """ + self.enable_user(uid, password) + def login(uid): """ Login the user and provide cookies back """ pass