rules:
  # Allow all to get conflicts types, as they are used on homepage.
  - path: /conflict-manager/conflicts/new
    methods: [GET]
    groups:
      alw: [1, 2, 3, 5, 6]
      oa: ['*']

  # Master Rights: Get on all 3 conflicts endpoints and post actions
  - path: /conflict-manager/action<*>
    methods: [POST]
    groups:
      alw: [1, 6]
      oa: ['*']
  - path: /conflict-manager/conflicts/<*>
    methods: [GET]
    groups:
      alw: [1, 6]
      oa: ['*']

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