Skip to content

Commit

Permalink
refactor: fix url for test
Browse files Browse the repository at this point in the history
  • Loading branch information
retroinspect committed Feb 6, 2024
1 parent 371f4af commit 434b069
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/user/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
urlpatterns = [
path("api/", include(router.urls)),
path("api/me", MeView.as_view(), name="me"),
path("api/fcm/token/<mode>", FCMTokenView.as_view(), name="fcm_token"),
path("api/fcm/topic", FCMTopicView.as_view(), name="fcm_topic"),
path("api/fcm/token/<mode>/", FCMTokenView.as_view(), name="fcm_token"),
path("api/fcm/topic/", FCMTopicView.as_view(), name="fcm_topic"),
]

0 comments on commit 434b069

Please sign in to comment.