diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/urls.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py index e07b0efc1f..dc03e30356 100644 --- a/bitbake/lib/toaster/toastergui/urls.py +++ b/bitbake/lib/toaster/toastergui/urls.py | |||
| @@ -116,6 +116,11 @@ urlpatterns = [ | |||
| 116 | tables.ProjectBuildsTable.as_view(template_name="projectbuilds-toastertable.html"), | 116 | tables.ProjectBuildsTable.as_view(template_name="projectbuilds-toastertable.html"), |
| 117 | name='projectbuilds'), | 117 | name='projectbuilds'), |
| 118 | 118 | ||
| 119 | url(r'^newproject_specific/(?P<pid>\d+)/$', views.newproject_specific, name='newproject_specific'), | ||
| 120 | url(r'^project_specific/(?P<pid>\d+)/$', views.project_specific, name='project_specific'), | ||
| 121 | url(r'^landing_specific/(?P<pid>\d+)/$', views.landing_specific, name='landing_specific'), | ||
| 122 | url(r'^landing_specific_cancel/(?P<pid>\d+)/$', views.landing_specific_cancel, name='landing_specific_cancel'), | ||
| 123 | |||
| 119 | # the import layer is a project-specific functionality; | 124 | # the import layer is a project-specific functionality; |
| 120 | url(r'^project/(?P<pid>\d+)/importlayer$', views.importlayer, name='importlayer'), | 125 | url(r'^project/(?P<pid>\d+)/importlayer$', views.importlayer, name='importlayer'), |
| 121 | 126 | ||
| @@ -233,6 +238,14 @@ urlpatterns = [ | |||
| 233 | api.XhrBuildRequest.as_view(), | 238 | api.XhrBuildRequest.as_view(), |
| 234 | name='xhr_buildrequest'), | 239 | name='xhr_buildrequest'), |
| 235 | 240 | ||
| 241 | url(r'^xhr_projectupdate/project/(?P<pid>\d+)$', | ||
| 242 | api.XhrProjectUpdate.as_view(), | ||
| 243 | name='xhr_projectupdate'), | ||
| 244 | |||
| 245 | url(r'^xhr_setdefaultimage/project/(?P<pid>\d+)$', | ||
| 246 | api.XhrSetDefaultImageUrl.as_view(), | ||
| 247 | name='xhr_setdefaultimage'), | ||
| 248 | |||
| 236 | url(r'xhr_project/(?P<project_id>\d+)$', | 249 | url(r'xhr_project/(?P<project_id>\d+)$', |
| 237 | api.XhrProject.as_view(), | 250 | api.XhrProject.as_view(), |
| 238 | name='xhr_project'), | 251 | name='xhr_project'), |
