Sha256: 60419e71688c0f9fa0fb4acc270ecf890d176c6f5a1687c75271d3fff9a2fddb
Contents?: true
Size: 1.28 KB
Versions: 9
Compression:
Stored size: 1.28 KB
Contents
/** * @ngdoc object * @name Bastion.docker-tags.controller:DockerTagsDetailsController * * @requires $scope * @requires $location * @requires DockerTag * @requires CurrentOrganization * * @description * Provides the functionality for the docker tags details action pane. */ angular.module('Bastion.docker-tags').controller('DockerTagsDetailsController', ['$scope', '$location', 'Nutupane', 'DockerTag', 'CurrentOrganization', function ($scope, $location, Nutupane, DockerTag, CurrentOrganization) { if ($scope.tag) { $scope.panel = {loading: false}; } else { $scope.panel = {loading: true}; } $scope.tag = DockerTag.get({id: $scope.$stateParams.tagId}); $scope.tag.$promise.then(function () { var params = { 'organization_id': CurrentOrganization, 'search': $location.search().search || "", 'sort_by': 'name', 'sort_order': 'ASC', 'paged': false, 'ids[]': _.pluck($scope.tag['related_tags'], 'id') }; var nutupane = new Nutupane(DockerTag, params); $scope.table = nutupane.table; $scope.panel.loading = false; nutupane.refresh(); }); } ]);
Version data entries
9 entries across 9 versions & 1 rubygems