What's Changed
News:
* Added support for excluded fields into serialization schemas by caspel26.
* Added possibility to exclude crud endpoints into APIViewSet by caspel26.
* Improved dynamical obtaining of object's pk for crud paths using pydantic by caspel26.
**Full Changelog**: https://github.com/caspel26/django-ninja-aio-crud/compare/v0.4.0...v0.5.0
🚀 Schema excluded fields support
* define your excluded fields in this way.
python
models.py
from django.db import models
from ninja_aio.models import ModelSerializer
class Foo(ModelSerializer):
name = models.CharField(max_length=30)
bar = models.CharField(max_length=30, default="")
active = models.BooleanField(default=False)
class ReadSerializer:
excludes = ["bar"]
class CreateSerializer:
fields = ["name"]
optionals = [("bar", str), ("active", bool)]
class UpdateSerializer:
excludes = ["id", "name"]
optionals = [[("bar", str), ("active", bool)]
🚀 Exclude CRUD endpoints into Views
You are able to exclude every crud endpoint, except for the additional views added by yourself, defining "disbale" APIViewSet's attribute.
python
views.py
from ninja_aio import NinjaAIO
from ninja_aio.views import APIViewSet
from .models import Foo
api = NinjaAIO()
class FooAPI(APIViewSet):
model = Foo
api = api
disable = ["retrieve", "update"]
FooAPI().add_views_to_route()
And that's it! For more information check **<a href="https://github.com/caspel26/django-ninja-aio-crud/blob/main/README.md">README</a>**