Re: adding object level permissions on the core permissions

2018-03-29 Thread Jani Tiainen
Hi. To achieve object level permissions you need to write custom authentication backend. Django does provide support for object level permissions but there isn't default implementation because object level permissions have different meaning for different people. See auth docs for more informatio

adding object level permissions on the core permissions

2018-03-29 Thread Erick Lestrange mr-programs.com
I want to add object level permissions to the Django'd core auth app Permission model. currently permission instances follow this string format '._' ideally i want this object level permissions to follow a similar string format with as few variations from the originals as possible but the mai