aboutsummaryrefslogtreecommitdiffstats
path: root/api/urls.py
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-01-09 20:52:06 +0100
committerGravatar Johannes Christ <[email protected]>2019-01-09 20:52:09 +0100
commit1d67beb7938635044aff75c819a7c78dde81ac63 (patch)
tree82d9a6df135af89748ba37ccc27bf06f4e3cf106 /api/urls.py
parentUse proper default for infraction insertion date. (diff)
Add a view returning the server rules.
Closes #171.
Diffstat (limited to 'api/urls.py')
-rw-r--r--api/urls.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/api/urls.py b/api/urls.py
index 7d6a4f7d..66d3fb9e 100644
--- a/api/urls.py
+++ b/api/urls.py
@@ -1,7 +1,7 @@
from django.urls import include, path
from rest_framework.routers import DefaultRouter
-from .views import HealthcheckView
+from .views import HealthcheckView, RulesView
from .viewsets import (
DocumentationLinkViewSet, InfractionViewSet,
OffTopicChannelNameViewSet, RoleViewSet,
@@ -63,5 +63,6 @@ urlpatterns = (
# from django_hosts.resolvers import reverse
# snake_name_endpoint = reverse('bot:snakename-list', host='api') # `bot/` endpoints
path('bot/', include((bot_router.urls, 'api'), namespace='bot')),
- path('healthcheck', HealthcheckView.as_view(), name='healthcheck')
+ path('healthcheck', HealthcheckView.as_view(), name='healthcheck'),
+ path('rules', RulesView.as_view(), name='rules')
)