Sha256: be9f6647c79bcdf7aab5fd7091a152c25b281877612080ede8569bcfd7b1d27e
Contents?: true
Size: 1.94 KB
Versions: 9
Compression:
Stored size: 1.94 KB
Contents
/** * @ngdoc object * @name Bastion.syncPlans.controller:SyncPlansController * * @requires $scope * @requires $location * @requires translate * @requires Nutupane * @requires SyncPlan * @requires CurrentOrganization * * @description * Provides the functionality specific to Sync Plans for use with the Nutupane UI pattern. * Defines the columns to display and the transform function for how to generate each row * within the table. */ angular.module('Bastion.sync-plans').controller('SyncPlansController', ['$scope', '$location', 'translate', 'Nutupane', 'SyncPlan', 'CurrentOrganization', function ($scope, $location, translate, Nutupane, SyncPlan, CurrentOrganization) { var params, nutupane; $scope.successMessages = []; $scope.errorMessages = []; params = { 'organization_id': CurrentOrganization, 'search': $location.search().search || "", 'sort_by': 'name', 'sort_order': 'ASC' }; nutupane = new Nutupane(SyncPlan, params); $scope.syncPlanTable = nutupane.table; $scope.removeRow = nutupane.removeRow; $scope.nutupane = nutupane; nutupane.enableSelectAllResults(); if ($location.search()['select_all']) { nutupane.table.selectAllResults(true); } $scope.syncPlanTable.closeItem = function () { $scope.transitionTo('sync-plans.index'); }; $scope.table = $scope.syncPlanTable; $scope.removeSyncPlan = function (syncPlan) { syncPlan.$remove(function () { $scope.successMessages.push(translate('Sync Plan %s has been deleted.').replace('%s', syncPlan.name)); $scope.removeRow(syncPlan.id); $scope.transitionTo('sync-plans.index'); }); }; }] );
Version data entries
9 entries across 9 versions & 1 rubygems