Only show products that the chosen hub can add to an order cycle

This commit is contained in:
Rohan Mitchell
2014-11-26 11:51:52 +11:00
parent 500b5ce347
commit a3a3832c8d
4 changed files with 44 additions and 39 deletions

View File

@@ -1,9 +1,9 @@
angular.module("ofn.admin").controller "AdminOverrideVariantsCtrl", ($scope, Indexer, SpreeApiAuth, PagedFetcher, hubs, producers) ->
angular.module("ofn.admin").controller "AdminOverrideVariantsCtrl", ($scope, Indexer, SpreeApiAuth, PagedFetcher, hubs, producers, hubPermissions) ->
$scope.hubs = hubs
$scope.hub = null
$scope.products = []
$scope.producers = Indexer.index producers
$scope.hubPermissions = hubPermissions
$scope.initialise = ->
SpreeApiAuth.authorise()