@@ -83,13 +83,8 @@ Note that this local server will only work inside Docker.
### User groups
One group has a special meaning in Arkindex: The `Internal` group, for special users whose tokens are used by workers. This groups is configured using the `INTERNAL_GROUP_ID` setting. The development server will show warnings but let you start the server anyway if the group isn't there; you will be able to access the Django admin and create the group from there. To create them using the shell:
```
backend/arkindex$ ./manage.py shell
>>> from django.contrib.auth.models import Group
>>> Group.objects.create(id=2, name='Internal')
```
We use a custom group model in `arkindex.users.models` (not the `django.contrib.auth` one).
In this early version groups do not define any right yet.