Sha256: 21ef6deab7220ef52812db19481579cfa298d241a7202fb73142669b7c67aee1
Contents?: true
Size: 987 Bytes
Versions: 91
Compression:
Stored size: 987 Bytes
Contents
/** * @ngdoc object * @name Bastion.content-views.controller:ContentViewsController * * @requires $scope * @requires Nutupane * @requires ContentView * @requires CurrentOrganization * * @description * Provides the functionality specific to ContentViews 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.content-views').controller('ContentViewsController', ['$scope', 'Nutupane', 'ContentView', 'CurrentOrganization', function ($scope, Nutupane, ContentView, CurrentOrganization) { var nutupane = new Nutupane(ContentView, { 'nondefault': true, 'organization_id': CurrentOrganization, 'sort_by': 'name', 'sort_order': 'ASC' }); nutupane.masterOnly = true; $scope.controllerName = 'katello_content_views'; $scope.table = nutupane.table; }] );
Version data entries
91 entries across 91 versions & 1 rubygems