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.

app.py 241B

12345678910111213
  1. from oscar.core.application import Application
  2. class TestApplication(Application):
  3. name = 'testapp'
  4. default_permissions = 'is_superuser'
  5. permissions_map = {
  6. 'index': 'is_staff',
  7. }
  8. application = TestApplication()