Skip to content

Commit

Permalink
fix service-index url calling reverse method
Browse files Browse the repository at this point in the history
  • Loading branch information
CFSNM authored and chrismeyersfsu committed Apr 4, 2024
1 parent e2f4213 commit b022b50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awx/api/views/root.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def get(self, request, format=None):
data['mesh_visualizer'] = reverse('api:mesh_visualizer_view', request=request)
data['bulk'] = reverse('api:bulk', request=request)
data['analytics'] = reverse('api:analytics_root_view', request=request)
data['service_index'] = django_reverse('service-index-root', request=request)
data['service_index'] = django_reverse('service-index-root')
return Response(data)


Expand Down

0 comments on commit b022b50

Please sign in to comment.