You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
explicit URLs Binding to ViewSets does not work for delete method to delete a device, throws 404, but works fine for creating a new device
notification_url_patterns = [
path('register_device',
FCMDeviceAuthorizedViewSet.as_view({'post': 'create'}), name='create_fcm_device'),
path('remove_device/{registration_id}', FCMDeviceAuthorizedViewSet.as_view(
{'delete': 'destroy'}), name='delete_fcm_device'), # this does not work
explicit URLs Binding to ViewSets does not work for delete method to delete a device, throws 404, but works fine for creating a new device
And using a router, it works fine
Anything I am missing? as I need to have custom URLs!
The text was updated successfully, but these errors were encountered: