Project

Profile

Help

Story #7336

Updated by pulpbot over 2 years ago

 

 **Ticket moved to GitHub**: "pulp/pulpcore/1923":https://github.com/pulp/pulpcore/issues/1923 




 ---- 


 ## Background 

 * Administrators and developers have expressed desire to read Pulp data using django-admin. 
 * Additionally, RBAC features of Pulp need an easy way for users to view/manage object-level permissions for Pulp data and django-admin provides that. 

 ## Solution 

 3.6 Already enabled django-admin at `/admin/` so now we need to expand the models that are available there. Specifically we need to: 

 * Add all the pulpcore objects 
 * Ensure each does not allow data to be added or modified, only read 
 * Ensure each object that meaningfully uses object-level permissions inherits from or uses `GuardedModelAdmin` from django-guardian. 

Back