mirror of
https://github.com/ansible/awx.git
synced 2026-01-19 13:41:28 -03:30
11 lines
270 B
Python
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'),
|
|
)
|