diff options
author | 2024-02-14 15:58:13 +0800 | |
---|---|---|
committer | 2024-02-14 15:58:13 +0800 | |
commit | cc1eb08b282b37c9855843fbdc7129e40a881c11 (patch) | |
tree | 4b42f796d50e40099a21f63efdfa831ca0bacada /pydis_site/apps/api/urls.py | |
parent | Events: Update the events to include in galleries (diff) | |
parent | Bump sentry-sdk from 1.40.2 to 1.40.3 (#1229) (diff) |
Merge branch 'main' into feat/events-redesign
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 ) |