-
Notifications
You must be signed in to change notification settings - Fork 1
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
Remove user.restricted
attribute
#353
Milestone
Comments
reefdog
added a commit
that referenced
this issue
Sep 20, 2022
Before removing the attribute entirely, let’s first stop treating the interface any differently based on restricted status. The commit removes any special/limited version of the interface for restricted users. There are also a few places we were doing a `current_user.nil?` check that was no longer necessary since `before_action :authenticate_user!` was already handling that. Issue #353
reefdog
added a commit
that referenced
this issue
Sep 20, 2022
This commit removes the `restricted` attribute from the `User` model and removes the (unused) seed for this user type. Issue #353
reefdog
added a commit
that referenced
this issue
Sep 20, 2022
Before removing the attribute entirely, let’s first stop treating the interface any differently based on restricted status. The commit removes any special/limited version of the interface for restricted users. There are also a few places we were doing a `current_user.nil?` check that was no longer necessary since `before_action :authenticate_user!` was already handling that. Issue #353
reefdog
added a commit
that referenced
this issue
Sep 20, 2022
This commit removes the `restricted` attribute from the `User` model and removes the (unused) seed for this user type. Issue #353
reefdog
added a commit
that referenced
this issue
Sep 20, 2022
Before removing the attribute entirely, let’s first stop treating the interface any differently based on restricted status. The commit removes any special/limited version of the interface for restricted users. There are also a few places we were doing a `current_user.nil?` check that was no longer necessary since `before_action :authenticate_user!` was already handling that. Issue #353
reefdog
added a commit
that referenced
this issue
Sep 20, 2022
This commit removes the `restricted` attribute from the `User` model and removes the (unused) seed for this user type. Issue #353
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We no longer have need for the idea of a "restricted" user, and any additional finessing that needs doing will be through roles (#349).
Let's remove the attribute and all the interface-splitting.
The text was updated successfully, but these errors were encountered: