Sha256: 8596adb00ed7b2944d8ab7249d2b740cf38de8c3a23b3949a31387c81fed08b9

Contents?: true

Size: 970 Bytes

Versions: 140

Compression:

Stored size: 970 Bytes

Contents

/**
 * @ngdoc object
 * @name  Bastion.ostree-branches.controller:OstreeBranchController
 *
 * @requires $scope
 * @requires OstreeBranch
 * @requires ApiErrorHandler
 *
 * @description
 *   Provides the functionality for the Ostree Branch action pane.
 */
angular.module('Bastion.ostree-branches').controller('OstreeBranchController', ['$scope', 'OstreeBranch', 'ApiErrorHandler',
    function ($scope, OstreeBranch, ApiErrorHandler) {
        $scope.panel = {
            error: false,
            loading: true
        };

        if ($scope.branch) {
            $scope.panel.loading = false;
        }

        $scope.branch = OstreeBranch.get({id: $scope.$stateParams.branchId}, function (branch) {
            $scope.$broadcast('branch.loaded', branch);
            $scope.panel.loading = false;
        }, function (response) {
            $scope.panel.loading = false;
            ApiErrorHandler.handleGETRequestErrors(response, $scope);
        });
    }
]);

Version data entries

140 entries across 140 versions & 1 rubygems

Version Path
katello-4.2.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.3.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.2.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.2.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.1.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.0.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.2.0.1.rc3 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-3.18.5 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.2.0.1.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.2.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.1.3 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.2.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.0.2.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.1.2.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.0.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.1.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-3.18.4 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.1.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js
katello-4.0.1.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch.controller.js