Fix users cannot delete mumble account (#567)

Added helper method for checking a user exists
Added a check for already deleted mumble accounts
This commit is contained in:
Basraah
2016-11-02 13:25:55 +10:00
committed by Adarnof
parent 98e1689aab
commit 2d3055480c
2 changed files with 6 additions and 3 deletions

View File

@@ -115,3 +115,7 @@ class MumbleManager:
model.save()
else:
logger.error("User %s not found on mumble. Unable to update groups." % username)
@staticmethod
def user_exists(username):
return MumbleUser.objects.filter(username=username).exists()