diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-11-28 17:57:57 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-11-28 17:57:57 +0200 |
commit | b4857400e13469785df9e34713e0bc55f77759e6 (patch) | |
tree | 0c0043fa4f11cdb5e8576132ad6afdc63ed35517 /servo/urls | |
parent | 57c46eff8a61a56658242306d139e86b84f01f5d (diff) | |
download | Servo-b4857400e13469785df9e34713e0bc55f77759e6.tar.gz Servo-b4857400e13469785df9e34713e0bc55f77759e6.tar.bz2 Servo-b4857400e13469785df9e34713e0bc55f77759e6.zip |
Fix issue with showing GSX repair history
Diffstat (limited to 'servo/urls')
-rw-r--r-- | servo/urls/device.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/servo/urls/device.py b/servo/urls/device.py index 04839dc..2193369 100644 --- a/servo/urls/device.py +++ b/servo/urls/device.py @@ -20,6 +20,9 @@ urlpatterns = patterns( url(r'^(?P<device>\d+)/diags/(?P<test_id>\d+)/run/$', run_test, name="devices-run_test"), + url(r'^(?P<pk>\d+)/repairs/$', 'search_gsx_repairs', + name="devices-search_gsx_repairs"), + url(r'^(?P<pk>\d+)/update_gsx_details/$', "update_gsx_details", name="devices-update_gsx_details"), url(r'^(?P<pk>\d+)/orders/(?P<order_id>\d+)/queue/(?P<queue_id>\d+)/parts/$', |