summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/urls.py
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-07-06 18:22:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-08 09:57:29 +0100
commit8813726f1d5ea1d78fced7fe52abdf826e529e62 (patch)
tree073689032966641d0f12415002572de1f1d08e72 /bitbake/lib/toaster/toastergui/urls.py
parente1ba2fd331b7f937b8ddf3e83389df5caf33d9e8 (diff)
downloadpoky-8813726f1d5ea1d78fced7fe52abdf826e529e62.tar.gz
bitbake: toaster: add Layer delete front end feature to layerdetails
Add the front end feature to delete a layer from the layer details page. [YOCO #9184] (Bitbake rev: 91815229f60eb9deba7d299f05c69b52ff1df59c) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r--bitbake/lib/toaster/toastergui/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index 15b1063c59..1c0ccbb2e1 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -191,7 +191,7 @@ urlpatterns = patterns('toastergui.views',
191 191
192 url(r'^xhr_importlayer/$', 'xhr_importlayer', name='xhr_importlayer'), 192 url(r'^xhr_importlayer/$', 'xhr_importlayer', name='xhr_importlayer'),
193 193
194 url(r'^xhr_layer/(?P<layerversion_id>\d+)$', 194 url(r'^xhr_layer/(?P<pid>\d+)/(?P<layerversion_id>\d+)$',
195 api.XhrLayer.as_view(), 195 api.XhrLayer.as_view(),
196 name='xhr_layer'), 196 name='xhr_layer'),
197 197