summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r--bitbake/lib/toaster/toastergui/urls.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index 55f325d0d6..b47a161687 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -152,6 +152,14 @@ urlpatterns = patterns('toastergui.views',
152 # JS Unit tests 152 # JS Unit tests
153 url(r'^js-unit-tests/$', 'jsunittests', name='js-unit-tests'), 153 url(r'^js-unit-tests/$', 'jsunittests', name='js-unit-tests'),
154 154
155 # default redirection 155 # image customisation functionality
156 url(r'^xhr_customrecipe/(?P<recipe_id>\d+)/packages/(?P<package_id>\d+|)$',
157 'xhr_customrecipe_packages', name='xhr_customrecipe_packages'),
158 url(r'^xhr_customrecipe/(?P<recipe_id>\d+)$', 'xhr_customrecipe_id',
159 name='xhr_customrecipe_id'),
160 url(r'^xhr_customrecipe/', 'xhr_customrecipe',
161 name='xhr_customrecipe'),
162
163 # default redirection
156 url(r'^$', RedirectView.as_view( url= 'landing')), 164 url(r'^$', RedirectView.as_view( url= 'landing')),
157) 165)