- Remove organisation setter for the user model.

- Revert the change to the log level for admin.
This commit is contained in:
Rebecca Law
2018-02-26 22:18:46 +00:00
parent 298eb77b54
commit 41309721bd
2 changed files with 1 additions and 5 deletions

View File

@@ -170,10 +170,6 @@ class User(UserMixin):
def organisations(self):
return self._organisations
@organisations.setter
def organisations(self, organisations):
self._organisations = organisations
class InvitedUser(object):