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
In v2, users are tracked within the user groups yaml.
With #9 it would be nice to move user groups into a config file. However, we don't want to track the users in there.
The idea is to flip it, and put the groups within the user's yaml.
v2:
# groups.yaml admin: title: Admin roles: - admin users: - john
v3:
# config/auth.php return [ 'groups' => [ 'admin' => [ 'title' => 'Admin', 'roles' => ['admin'], ] ];
# users/john.yaml name: John groups: - admin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In v2, users are tracked within the user groups yaml.
With #9 it would be nice to move user groups into a config file. However, we don't want to track the users in there.
The idea is to flip it, and put the groups within the user's yaml.
v2:
v3:
The text was updated successfully, but these errors were encountered: