Monday, April 30, 2018

Re: model permission assignment via groups requires further config at model level?

Thanks George - I understand now.  I never thought it would only apply to the admin interface but should have.  Kind regards,

Rob


On Sun, Apr 29, 2018, 10:05 PM George Lubaretsi, <glubaretsi@gmail.com> wrote:
Django permissions are only enforced in Admin interface by default. You have to enforce them in your views by using `has_perm` method of `user` instance - `user.has_perm('<app label>.<permission codename>')`


Also, take a look at this blog post for some alternatives to built-in permissions system - https://www.vinta.com.br/blog/2016/controlling-access-a-django-permission-apps-comparison/

On Monday, April 30, 2018 at 5:04:04 AM UTC+4, rsbaxter wrote:
I'm trying to confirm if this is correct: I create a group with no permissions in it, and assign this group to a user.  This user is not "staff status" nor is the user "superuser status" - they are only active.  The user is not a member of any other groups - just the one with no permissions.  Upon login, this user is still able to add, update and delete all models in the app.  I think I'm misunderstanding the group functionality - is it correct that permissions assigned via groups are not automatically enforced by django and that further configuration is required to enforce the permissions assigned via the group(s) assigned to the user?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2c0bd344-cc7b-4691-9a73-4bd39ff7c538%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CALFpZ6P%2BMS8zgMBmWypKKpFXo1zatsJvYJ4g%2B2ES3gzhE0o96g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment