Files
awx/awx/network_ui/urls.py
Ben Thomasson 89cabf7ca0 Fixes timeout when exporting YAML from network UI
Exporting YAML on dev envs with honcho and in production environments
would timeout.  This was due to daphne handling the export request
in dev but not in production.  This fixes network_ui to use uwsgi instead
of daphne to handle the request.
2018-05-02 10:31:36 -04:00

11 lines
312 B
Python

# Copyright (c) 2017 Red Hat, Inc
from django.conf.urls import url
from awx.network_ui import views
app_name = 'network_ui'
urlpatterns = [
url(r'^topology.json/?$', views.json_topology_data, name='json_topology_data'),
url(r'^topology.yaml/?$', views.yaml_topology_data, name='yaml_topology_data'),
]