Skip to content

Commit

Permalink
fix: give QueueViewSet a distinct basename (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifer-richards authored Jul 16, 2024
1 parent 9223380 commit 359151c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpctracker/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def to_url(self, value):
router.register(r'assignments', rpc_api.AssignmentViewSet)
router.register(r'documents', rpc_api.RfcToBeViewSet)
router.register(r'labels', rpc_api.LabelViewSet)
router.register(r'queue', rpc_api.QueueViewSet)
router.register(r'queue', rpc_api.QueueViewSet, basename="queue")
router.register(r'rpc_roles', rpc_api.RpcRoleViewSet)

urlpatterns = [
Expand Down

0 comments on commit 359151c

Please sign in to comment.