aboutsummaryrefslogtreecommitdiffstats
path: root/api/urls.py
blob: 40883c643a5056b969d94a60e5c9c91569d4975a (plain) (blame)
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
42
43
44
45
46
47
48
49
from django.urls import include, path
from rest_framework.routers import DefaultRouter

from .views import HealthcheckView
from .viewsets import (
    DocumentationLinkViewSet, MemberViewSet,
    OffTopicChannelNameViewSet, SnakeFactViewSet, SnakeNameViewSet,
    TagViewSet
)


# http://www.django-rest-framework.org/api-guide/routers/#defaultrouter
bot_router = DefaultRouter(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-facts',
    SnakeFactViewSet,
)
bot_router.register(
    'snake-names',
    SnakeNameViewSet,
    base_name='snakename'
)
bot_router.register(
    'tags',
    TagViewSet,
)

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')
)