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.

apps.py 243B

1234567891011
  1. from oscar.core.application import OscarConfig
  2. class TestConfig(OscarConfig):
  3. name = 'tests._site.apps.myapp'
  4. namespace = 'testapp'
  5. default_permissions = 'is_superuser'
  6. permissions_map = {
  7. 'index': 'is_staff',
  8. }