Changes between Initial Version and Version 1 of Ticket #29686
- Timestamp:
- Aug 17, 2018, 3:22:49 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29686
- Property Has patch set
- Property Triage Stage Unreviewed → Accepted
- Property Summary contrib.auth.admin - user_change_password() method send object to has_change_permission() → Make UserAdmin.user_change_password() pass object to has_change_permission()
- Property Type New feature → Cleanup/optimization
-
Ticket #29686 – Description
initial v1 1 Ticket for https://github.com/django/django/pull/10253. 2 3 4 This makes overriding user_change_password() and mangling permissions easier because we have access to the object. 1 This makes overriding `user_change_password()` and mangling permissions easier because we have access to the object. 5 2 6 3 For example when you'd like to use the admin panel to allow users to change their own passwords but not see the list of all users or anything else. 4 5 [https://github.com/django/django/pull/10253 PR]