3a19218bd5
Refactored user creation and update via REST API. Used new serializer. Cleaned up management commands, signals and imports. Moved code from 'api.py' to 'models.py'. Changed usage of group 'Registered'. Now the users don't have to be members to gain its permissions. Used customized auth backend for this. Added and changed some tests.
6 lines
101 B
Python
6 lines
101 B
Python
from openslides.utils.exceptions import OpenSlidesError
|
|
|
|
|
|
class UserError(OpenSlidesError):
|
|
pass
|