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.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index 0002a5a2ee..ece9ac1696 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -225,6 +225,10 @@ urlpatterns = patterns('toastergui.views',
225 api.XhrProject.as_view(), 225 api.XhrProject.as_view(),
226 name='xhr_project'), 226 name='xhr_project'),
227 227
228 url(r'xhr_build/(?P<build_id>\d+)$',
229 api.XhrBuild.as_view(),
230 name='xhr_build'),
231
228 url(r'^mostrecentbuilds$', widgets.MostRecentBuildsView.as_view(), 232 url(r'^mostrecentbuilds$', widgets.MostRecentBuildsView.as_view(),
229 name='most_recent_builds'), 233 name='most_recent_builds'),
230 234