plateforme-tfjm2/apps/api/apps.py

11 lines
227 B
Python
Raw Normal View History

2020-04-30 17:12:15 +00:00
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class APIConfig(AppConfig):
2020-05-11 12:08:19 +00:00
"""
Manage the inscription through a JSON API.
"""
2020-04-30 17:12:15 +00:00
name = 'api'
verbose_name = _('API')