Sha256: 4c55063300d3a725fda4354f87a0b6d93508919614d6b241ab4b41d1733027d9
Contents?: true
Size: 546 Bytes
Versions: 99
Compression:
Stored size: 546 Bytes
Contents
/** * @ngdoc service * @name Bastion.repository.service:downloadPolicy * * @requires translate * * @description * Provides a downloadPolicy for repositories */ angular.module('Bastion.repositories').service('DownloadPolicy', ['translate', function (translate) { this.downloadPolicies = { 'on_demand': translate('On Demand'), 'immediate': translate('Immediate') }; this.downloadPolicyName = function (policy) { return this.downloadPolicies[policy]; }; }] );
Version data entries
99 entries across 99 versions & 1 rubygems