diff --git a/awx/api/views.py b/awx/api/views.py index 683b7f9f93..339102faf6 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -95,6 +95,7 @@ class ApiV1RootView(APIView): data = SortedDict() data['authtoken'] = reverse('api:auth_token_view') + data['ping'] = reverse('api:api_v1_ping_view') data['config'] = reverse('api:api_v1_config_view') data['me'] = reverse('api:user_me_list') data['dashboard'] = reverse('api:dashboard_view')