1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
from django.urls import include, path
from rest_framework.routers import SimpleRouter
from .views import HealthcheckView
from .viewsets import (
DocumentationLinkViewSet, MemberViewSet,
OffTopicChannelNameViewSet, SnakeNameViewSet
)
# http://www.django-rest-framework.org/api-guide/routers/#simplerouter
bot_router = SimpleRouter(trailing_slash=False)
bot_router.register(
'documentation-links',
DocumentationLinkViewSet
)
bot_router.register(
'off-topic-channel-names',
OffTopicChannelNameViewSet,
base_name='offtopicchannelname'
)
bot_router.register(
'members',
MemberViewSet
)
bot_router.register(
'snake-names',
SnakeNameViewSet,
base_name='snakename'
)
app_name = 'api'
urlpatterns = (
# Build URLs using something like...
#
# 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')
)
|