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

v1.0.0 #12

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

v1.0.0 #12

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

Comments

@franciscogouveia
Copy link
Owner

This version has a breaking change.

The syntax of the target has suffered an improvement and has changed. It means that you will have to change it in your policies.

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'
  }
]
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