rules:
  # Catalog: promo player get and post for a product
  - path: /promo-player/product/<int>/player
    methods: [GET, POST]
    groups:
      alw: [1]
      oa: ['*']

  - path: /promo-player/product/<int>/player/<int>
    methods: [PUT]
    groups:
      alw: [1]

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