Hello all!
I'm trying to use django's default model permissions ('add_model', 'change_model', 'delete_model') as i'd like to create auth groups for my users in my project. However, none of these default permissions are created by the migrations. According to the documentation, it seems like Djangae, purposefully, cuts out the actual DB calls to create them.
How can i get these permissions added for my models, or create similar behavior in Djangae? I can't figure it out from Djangae's documentation how exactly to do this. Also, once i manage to get these permissions, will creating a group using Django's default admin (through Djangae's auto-added groups admin page) and attaching it to a user behave like i expect it to?
Thank you!