Skip to content

An app to add object-level/row-level permissions to users and groups. Each model can have different permissions.

License

Notifications You must be signed in to change notification settings

iitians/django-objectpermissions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Object Permissions is a way to add a custom set of user-object or group-object permissions. It does not replace Django's built-in permissions. Instead it augments them by adding additional ways to manage access to specific objects.

You can add object permissions to existing apps (e.g. Flat Pages) without modifying the app's code, or build it into your own application.

It uses an efficient method of storing permissions; it requires only one row per user-object combination, regardless of the number of permissions granted.

Our initial goals were pretty simple (in thought, not necessarily in deed):

* Have an easy way to set read/write/owner permissions on an object or row
* Easy to discover if a given user has a level of permission
* Customizable permissions by model
* Admin viewing/editing integration

This is a proof-of-concept right now and we are looking for feedback for tweaks in implementation or new ideas to implement.

About

An app to add object-level/row-level permissions to users and groups. Each model can have different permissions.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.0%
  • Other 1.0%