diff options
author | 2024-02-03 00:52:05 -0800 | |
---|---|---|
committer | 2024-02-03 00:52:05 -0800 | |
commit | c55050e91c05a72d504b9604a2fbb697f1bdd6f2 (patch) | |
tree | cce3c380e6b695d11dcb65ee65411f6f654e2be3 /pydis_site/apps/api/urls.py | |
parent | Merge pull request #1220 from python-discord/dependabot/pip/ruff-0.2.0 (diff) | |
parent | Merge branch 'main' into mailing-list-model (diff) |
Merge pull request #1174 from python-discord/mailing-list-model
Diffstat (limited to 'pydis_site/apps/api/urls.py')
-rw-r--r-- | pydis_site/apps/api/urls.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pydis_site/apps/api/urls.py b/pydis_site/apps/api/urls.py index 80d4edc2..5cda033a 100644 --- a/pydis_site/apps/api/urls.py +++ b/pydis_site/apps/api/urls.py @@ -17,6 +17,7 @@ from .viewsets import ( FilterListViewSet, FilterViewSet, InfractionViewSet, + MailingListViewSet, NominationViewSet, OffTopicChannelNameViewSet, OffensiveMessageViewSet, @@ -68,6 +69,10 @@ bot_router.register( InfractionViewSet ) bot_router.register( + 'mailing-lists', + MailingListViewSet +) +bot_router.register( 'nominations', NominationViewSet ) |