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
Is this a bug report or feature request?
Add wildcard support for GROUPS_ALLOWLIST.
What should the feature do:
For example, abc*,*bcd,*ccc* will match abc-any-character, any-character-bcd and any-character-ccc-any-character respectively
abc*,*bcd,*ccc*
abc-any-character
any-character-bcd
any-character-ccc-any-character
match("*est", "test") == true match("est*", "establish") == true match("*est*", "bestablish") == true match("t*e*s*t", "ttttteeeeeeeesttttttt")) == true match("t*e*s*t", "tset") == false match("test", "testing") == false match("test*", "1testing") == false
match("*est", "test") == true
match("est*", "establish") == true
match("*est*", "bestablish") == true
match("t*e*s*t", "ttttteeeeeeeesttttttt")) == true
match("t*e*s*t", "tset") == false
match("test", "testing") == false
match("test*", "1testing") == false
What is use case behind this feature:
To manage common sub-groups authorization rules instead of having very verbose GROUPS_ALLOWLIST
GROUPS_ALLOWLIST
Additional Information:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Is this a bug report or feature request?
Add wildcard support for GROUPS_ALLOWLIST.
What should the feature do:
For example,
abc*,*bcd,*ccc*
will matchabc-any-character
,any-character-bcd
andany-character-ccc-any-character
respectivelymatch("*est", "test") == true
match("est*", "establish") == true
match("*est*", "bestablish") == true
match("t*e*s*t", "ttttteeeeeeeesttttttt")) == true
match("t*e*s*t", "tset") == false
match("test", "testing") == false
match("test*", "1testing") == false
What is use case behind this feature:
To manage common sub-groups authorization rules instead of having very verbose
GROUPS_ALLOWLIST
Additional Information:
The text was updated successfully, but these errors were encountered: