mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
16 lines
538 B
CoffeeScript
16 lines
538 B
CoffeeScript
angular.module("admin.customers").controller "customersCtrl", ($scope, Customers, Columns, pendingChanges, shops) ->
|
|
$scope.shop = null
|
|
$scope.shops = shops
|
|
$scope.submitAll = pendingChanges.submitAll
|
|
|
|
$scope.columns = Columns.setColumns
|
|
email: { name: "Email", visible: true }
|
|
code: { name: "Code", visible: true }
|
|
tags: { name: "Tags", visible: true }
|
|
|
|
$scope.initialise = ->
|
|
$scope.customers = Customers.index(enterprise_id: $scope.shop.id)
|
|
|
|
$scope.loaded = ->
|
|
Customers.loaded
|