Skip to main content

Taking (delegating) REST permissions from a model instance to a model pointed by ForeignKey/m2m

Project description

Delegate django rest framework object permissions to an object pointed by foreign key/m2m

Sample: set up permissions so that anyone having django/django guardian permissions on Invoice will have the same set of permissions on its address:

class Address(models.Model):
    ... address fields

class Invoice(models.Model):
    address = models.OneToOneField(Address, related_name='invoice')
    ... invoice fields

perms = RestPermissions()

@perms.apply(permissions=DelegatedPermissions(perms, "invoice")
class AddressViewSet(ModelViewSet):
    queryset = Address.objects.all()
    serializer = AddressSerializer
    ...

@perms.apply()            # implicitely adds django model permissions and guardian permissions
class InvoiceViewSet(ModelViewSet):
    queryset = Invoice.objects.all()
    serializer = InvoiceSerializer
    ...

See docs and API at github.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

File details

Details for the file django-rest-delegated-permissions-1.1.2.tar.gz.

File metadata

File hashes

Hashes for django-rest-delegated-permissions-1.1.2.tar.gz
Algorithm Hash digest
SHA256 c2ca59a0001df720c9afd50ed279c9f28a52fab8781c5b75263d956da4e02f01
MD5 083820a41027d7e7b0a3a790a7b7e216
BLAKE2b-256 8f2cf559a4e2dc97af9446b45fb0d15ed2941d5c94cb88fb81f9a9103a5c0207

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page