What's Changed
News:
* Added api_routh_path attribute to APIViewSet by caspel26.
**Full Changelog**: https://github.com/caspel26/django-ninja-aio-crud/compare/v0.7.7...v0.7.8
* You can use this attribute if you do not want to use model verbose name plural as router path.
python
views.py
from ninja_aio.views import APIViewSet
from ninja_aio import NinjaAIO
from api.models import Foo
api = NinjaAIO()
class FooAPI(APIViewSet):
model = Foo
api = api
api_route_path = "testpaths"
FooAPI().add_views_to_route()