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.2.0.tar.gz.

File metadata

File hashes

Hashes for django-rest-delegated-permissions-1.2.0.tar.gz
Algorithm Hash digest
SHA256 5b9236da96e4ffb2b061b1aa4447f6f7ffa035e33795518cb23c8f8ed7f8686c
MD5 7bc88776a34f35792580758579f360a7
BLAKE2b-256 cdaab9bb23c532f26b88df77cd2672514395428334a19a2e341dd1b039c80472

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