Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify target #8

Closed
franciscogouveia opened this issue Feb 15, 2016 · 0 comments
Closed

Simplify target #8

franciscogouveia opened this issue Feb 15, 2016 · 0 comments
Assignees
Milestone

Comments

@franciscogouveia
Copy link
Owner

Taken from franciscogouveia/hapi-rbac#17

Instead of

target: ['all-of',
  {
    type: 'credentials:username',
    value: 'fgouveia'
  },
  {
    type: 'credentials:group',
    value: 'writer'
  }
]

Do something like this for an AND condition

target: {
  'credentials:username': 'fgouveia',
  'credentials:group': 'writer'
}

Use an array for a combination of AND and OR condition

target: [
  {
    'credentials:username': 'fgouveia',
    'credentials:group': 'writer'
  },
  {
    'credentials:username': 'anonymous',
    'credentials:group': 'reader'
  }
]
@franciscogouveia franciscogouveia added this to the 1.0.0 milestone Feb 15, 2016
This was referenced Feb 15, 2016
@franciscogouveia franciscogouveia self-assigned this Feb 15, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant