awx/awx/ui/urls.py
2015-06-11 16:10:23 -04:00

11 lines
270 B
Python

# Copyright (c) 2015 Ansible, Inc.
# All Rights Reserved.
from django.conf import settings
from django.conf.urls import *
urlpatterns = patterns('awx.ui.views',
url(r'^$', 'index', name='index'),
url(r'^portal/$', 'portal_redirect', name='portal_redirect'),
)