mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 03:40:42 -03:30
Re-enable API settings URLs.
This commit is contained in:
parent
572f62e22a
commit
3850b96da2
@ -295,8 +295,7 @@ v1_urls = patterns('awx.api.views',
|
||||
url(r'^me/$', 'user_me_list'),
|
||||
url(r'^dashboard/$', 'dashboard_view'),
|
||||
url(r'^dashboard/graphs/jobs/$','dashboard_jobs_graph_view'),
|
||||
# TODO: Uncomment aftger 3.0 when we bring database settings endpoints back
|
||||
# url(r'^settings/', include(settings_urls)),
|
||||
url(r'^settings/', include(settings_urls)),
|
||||
url(r'^schedules/', include(schedule_urls)),
|
||||
url(r'^organizations/', include(organization_urls)),
|
||||
url(r'^users/', include(user_urls)),
|
||||
|
||||
@ -118,8 +118,7 @@ class ApiV1RootView(APIView):
|
||||
data['authtoken'] = reverse('api:auth_token_view')
|
||||
data['ping'] = reverse('api:api_v1_ping_view')
|
||||
data['config'] = reverse('api:api_v1_config_view')
|
||||
# TODO: Uncomment after 3.0 when we bring database settings endpoints back
|
||||
# data['settings'] = reverse('api:settings_list')
|
||||
data['settings'] = reverse('api:settings_list')
|
||||
data['me'] = reverse('api:user_me_list')
|
||||
data['dashboard'] = reverse('api:dashboard_view')
|
||||
data['organizations'] = reverse('api:organization_list')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user