From 9409af4e1eb3002237816e45fe68c8c202746731 Mon Sep 17 00:00:00 2001 From: diminator Date: Tue, 8 Sep 2015 11:35:34 +0200 Subject: [PATCH] acls on user level for ikonotv --- js/components/whitelabel/wallet/constants/wallet_api_urls.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/components/whitelabel/wallet/constants/wallet_api_urls.js b/js/components/whitelabel/wallet/constants/wallet_api_urls.js index c1b101a1..e0d8a862 100644 --- a/js/components/whitelabel/wallet/constants/wallet_api_urls.js +++ b/js/components/whitelabel/wallet/constants/wallet_api_urls.js @@ -14,7 +14,8 @@ function getWalletApiUrls(subdomain) { else if (subdomain === 'ikonotv'){ return { 'pieces_list': walletConstants.walletApiEndpoint + subdomain + '/pieces/', - 'piece': walletConstants.walletApiEndpoint + subdomain + '/pieces/${piece_id}/' + 'piece': walletConstants.walletApiEndpoint + subdomain + '/pieces/${piece_id}/', + 'user': walletConstants.walletApiEndpoint + subdomain + '/users/' }; } return {};