Added API endpoint for listing public instance settings

This commit is contained in:
Eliot Berriot 2018-02-17 21:21:08 +01:00
parent 0944ef2a07
commit 6152b3bb36
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
7 changed files with 69 additions and 1 deletions

View file

@ -0,0 +1,7 @@
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^settings/$', views.InstanceSettings.as_view(), name='settings'),
]