From: Loic Baron Date: Wed, 22 Apr 2015 17:32:52 +0000 (+0200) Subject: query prefixed with myslice in slice page users tab X-Git-Tag: myslice-1.3~28 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=86dffb2f2c8a621bed56a82591545cde86a34163;p=unfold.git query prefixed with myslice in slice page users tab --- 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;