I have two Django applications inside one project:
- tickets
- solver
In solver app is model that extends Django User model. In tickets app is Ticket model.
I need to make connection: If Solver has %permission_name%, than he can do %action%. How can i reach this?
Pure Django, no plugins.
Also, in documentation is shown an example, but i don't get how it is working: when, where and how user perms are connected with concrete model?
user.has_perm('app.view_task')
Here it is connected only with app and user...