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
permissions
Permissions needs to be reworked away from long flags similar to groups in favor of subcommands and positional args.
groups
USAGE permissions <subcommand> permissions list permissions create <site:name> permissions delete <site:name> permissions grant <namespace:name> <role-names ...> permissions revoke <namespace:name> <role-name ...> EXAMPLES permissions list > NAME ROLES site:deploy-frontend ops ux site:deploy-backend ops permissions create site:deploy > Created permission site:deploy permissions delete site:deploy > Deleted permission site:deploy permissions grant site:deploy ops > Granted permission site:deploy to role ops permissions grant site:deploy ops ux > Granted permission site:deploy to roles ops ux permissions revoke site:deploy ops > Revoked permission site:deploy from role ops permissions revoke site:deploy ops ux > Revoked permission site:deploy from roles ops ux
The text was updated successfully, but these errors were encountered:
Update permission command to use args, not options
955a37d
Boldly, into the future! Fixes #675
e998eba
christophermaier
No branches or pull requests
Permissions needs to be reworked away from long flags similar to
groups
in favor of subcommands and positional args.The text was updated successfully, but these errors were encountered: