From 86dffb2f2c8a621bed56a82591545cde86a34163 Mon Sep 17 00:00:00 2001 From: Loic Baron Date: Wed, 22 Apr 2015 19:32:52 +0200 Subject: [PATCH] query prefixed with myslice in slice page users tab --- portal/templates/slice-tab-users-view.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/portal/templates/slice-tab-users-view.html b/portal/templates/slice-tab-users-view.html index 29a4f57e..6f06c1ff 100644 --- a/portal/templates/slice-tab-users-view.html +++ b/portal/templates/slice-tab-users-view.html @@ -9,7 +9,7 @@ var slice_users_removed = []; var slice_users_emails = []; var slice_users_emails_removed = []; - $.post("/rest/user/",{'filters':{'parent_authority': authority_hrn}}, function( data ) { + $.post("/rest/myslice:user/",{'filters':{'parent_authority': authority_hrn}}, function( data ) { var list_users = []; var table_users = []; /* Available fields @@ -68,7 +68,7 @@ }); // post rest/use $('button#addusers').click(function() { - $.post("/update/slice/",{'filters':{'slice_hrn':'{{slice}}'},'params':{'users':slice_users}}, function(data) { + $.post("/update/myslice:slice/",{'filters':{'slice_hrn':'{{slice}}'},'params':{'users':slice_users}}, function(data) { if(data.success){ // TODO: highlight row after success //$('tr[id="'+record_id+'"]').highlight(); @@ -87,7 +87,7 @@ $(document).ready(function() { // TODO: Add a filter based on the list of authorities - $.post("/rest/authority/",{'fields':['authority_hrn']}, function( data ) { + $.post("/rest/myslice:authority/",{'fields':['authority_hrn']}, function( data ) { var list_authorities = []; $.each( data, function( key, val ) { auth_hrn = val.authority_hrn; -- 2.43.0