rules:
  # Allow for analytics
  - path: /reporting/report/presets
    methods: [GET]
    groups:
      alw: [3]

  - path: /reporting/report/preset
    methods: [POST]
    groups:
      alw: [3]

  - path: /reporting/report/preset/<int>
    methods: [DELETE]
    groups:
      alw: [3]

  - path: /reporting/report/<str>/filters
    methods: [GET, POST]
    groups:
      alw: [3]

  - path: /reporting/report/workstation-<str>
    methods: [POST]
    groups:
      alw: [3]

  - path: /reporting/product/<str>/overview/<str>
    methods: [GET]
    groups:
      alw: [3]

  # Allow for accounting
  - path: /reporting/report/<str>/embed
    methods: [POST]
    groups:
      alw: [5]

  - path: /reporting/space/workstation_accounting/report/<str>
    methods: [GET]
    groups:
      alw: [5]

  # Admin: Allow all.
  - path: <*>
    methods: ['*']
    groups:
      alw: [4]
      oa: ['*']
