mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
14 lines
425 B
CoffeeScript
14 lines
425 B
CoffeeScript
angular.module("admin.customers").controller "customersCtrl", ($scope, Customers, Columns, shops) ->
|
|
$scope.shop = null
|
|
$scope.shops = shops
|
|
|
|
$scope.columns = Columns.setColumns
|
|
email: { name: "Email", visible: true }
|
|
code: { name: "Code", visible: true }
|
|
|
|
$scope.initialise = ->
|
|
$scope.customers = Customers.index(enterprise_id: $scope.shop.id)
|
|
|
|
$scope.loaded = ->
|
|
Customers.loaded
|