See #192: use nodeinfo/2.0 namespace to be future proof

This commit is contained in:
Eliot Berriot 2018-05-07 22:28:21 +02:00
parent b536e5a1f9
commit 6ff8c2c8da
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
3 changed files with 4 additions and 4 deletions

View file

@ -4,6 +4,6 @@ from . import views
urlpatterns = [
url(r'^nodeinfo/$', views.NodeInfo.as_view(), name='nodeinfo'),
url(r'^nodeinfo/2.0/$', views.NodeInfo.as_view(), name='nodeinfo-2.0'),
url(r'^settings/$', views.InstanceSettings.as_view(), name='settings'),
]