We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, we allow a transition to succeed even if the params don't validate against the url (or type).
With this state:
.state({ name: 'foo', url: '/foo/{fooid:[0-9]{5}}' });
we allow $state.go(foo, {fooid: 123456789}) to succeed. We should fail this transition because the actual params are not valid.
$state.go(foo, {fooid: 123456789})
The text was updated successfully, but these errors were encountered:
b1379e6
christopherthielen
No branches or pull requests
Currently, we allow a transition to succeed even if the params don't validate against the url (or type).
With this state:
we allow
$state.go(foo, {fooid: 123456789})
to succeed. We should fail this transition because the actual params are not valid.The text was updated successfully, but these errors were encountered: