For OC, fetch all enterprises we have access to, including those via E2E relationships

This commit is contained in:
Rohan Mitchell
2014-08-28 15:06:55 +10:00
parent 0b61872d96
commit 7f74854a2f
8 changed files with 27 additions and 10 deletions

View File

@@ -330,7 +330,7 @@ angular.module('order_cycle', ['ngResource'])
}])
.factory('Enterprise', ['$resource', ($resource) ->
Enterprise = $resource('/admin/enterprises/:enterprise_id.json', {}, {'index': {method: 'GET', isArray: true}})
Enterprise = $resource('/admin/enterprises/for_order_cycle/:enterprise_id.json', {}, {'index': {method: 'GET', isArray: true}})
{
Enterprise: Enterprise