๐Ÿ“ฆ encode / django-rest-framework

๐Ÿ“„ apps.py ยท 11 lines
1
2
3
4
5
6
7
8
9
10
11from django.apps import AppConfig


class RestFrameworkConfig(AppConfig):
    name = 'rest_framework'
    verbose_name = "Django REST framework"

    def ready(self):
        # Add System checks
        from .checks import pagination_system_check  # NOQA