rules:
  - path: /salesgoals/goals/<int>
    methods: [GET, POST, PATCH]
    groups:
      alw: [1]

  - path: /salesgoals/goals/<int>/<int>
    methods: [POST, DELETE]
    groups:
      alw: [1]

  - path: /salesgoals/goals/countries
    methods: [GET]
    groups:
      alw: [1]

  - path: /salesgoals/marketing_highlights/<int>
    methods: [GET, POST]
    groups:
      alw: [1]

  - path: /salesgoals/marketing_highlights/<int>/<int>
    methods: [DELETE]
    groups:
      alw: [1]

  - path: /salesgoals/territories
    methods: [GET]
    groups:
      alw: [1]

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