aboutsummaryrefslogtreecommitdiff
path: root/apps/forum/urls.py
blob: 79e2e0dd9f4e54f084d8efa09567fa50aee3e136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from django.urls import path

from .views import (
    TopicListView,
)

app_name = "forum"

urlpatterns = [
    path(r't/', TopicListView.as_view(), name='topic-list',),
    path(r'', TopicListView.as_view(), name='topic-redirect',),
]