mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
9 lines
309 B
CoffeeScript
9 lines
309 B
CoffeeScript
angular.module("admin.enterprises").controller 'enterprisesCtrl', ($scope, $q, Enterprises, Columns) ->
|
|
requests = []
|
|
requests.push ($scope.allEnterprises = Enterprises.index(ams_prefix: "index")).$promise
|
|
|
|
$q.all(requests).then ->
|
|
$scope.loaded = true
|
|
|
|
$scope.columns = Columns.columns
|