mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-28 04:24:00 +03:00
12 lines
331 B
Python
12 lines
331 B
Python
from 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
|
|
from .checks import www_authenticate_behavior_setting_check # NOQA
|