avancé de dev

This commit is contained in:
Ambulance Clerc
2022-02-15 14:48:18 +01:00
parent d84d7d9823
commit c990f87413
162 changed files with 27899 additions and 27 deletions

View File

@@ -0,0 +1,11 @@
from django.conf.urls import url
from .views import GetAppListJsonView, GetGravatartUrlJsonView
urlpatterns = [
url(r'^app-list-json/$', GetAppListJsonView.as_view(),
name='baton-app-list-json'),
url(r'^gravatar/$', GetGravatartUrlJsonView.as_view(),
name='baton-gravatar-json'),
]