You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
291 B

  1. from django.conf import settings
  2. from roles.models import Role
  3. def create_default_roles():
  4. Role.objects.get_or_create(name=settings.ROLE_PROJECT_ADMIN)
  5. Role.objects.get_or_create(name=settings.ROLE_ANNOTATOR)
  6. Role.objects.get_or_create(name=settings.ROLE_ANNOTATION_APPROVER)