bastion 6.1.14 → 6.1.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 14aaa052bc03f059c45f2691f5cf4fb403afa3d0
4
- data.tar.gz: 9e649fdfefda9a1c100c3a57ffbdee3178508d6c
3
+ metadata.gz: 13ffc69e73030b57a5fff08b7e9c528c0b7cb4fd
4
+ data.tar.gz: 1efff373737cada489cbe63ece5ac05387d6c7ce
5
5
  SHA512:
6
- metadata.gz: 1a0a7e5a181b7752a4721d23b221b09b9aa7cb918f7e2797e92418f80aac309efd77fba1c849c26ee6a14f32d19d50e48a2d5ccbc0fbf6b36c85446b792129c3
7
- data.tar.gz: fb9682b06a3d8190de0dfbf998c3bf24bb5a82e5fdd0a6b892df788421f84c4e7993f124ef52496b16b0b161079156514f4902f7315bb3094ce3d0ed85382e7f
6
+ metadata.gz: 9e1a8af65eea0bb9eacf9294a74f7d3aead0538ce200354f8d9fd6942c2fca6a664f83c39c94f9b99b344e4591adc5e71432ffaa41901221f25a5af15766f07d
7
+ data.tar.gz: c0ed8bb2304d11043be9fc722d5ad46b005904f3ddb15a57f340c75412908824e2adc404cba6e90f2715522c69b53a5a52a752df584a2c8fcb472f9dd271aff9
@@ -76,27 +76,18 @@ angular.module('Bastion').config(
76
76
  * @requires $breadcrumb
77
77
  * @requires PageTitle
78
78
  * @requires BastionConfig
79
- * @requires repositoryTypes
80
79
  *
81
80
  * @description
82
81
  * Set up some common state related functionality and set the current language.
83
82
  */
84
- angular.module('Bastion').run(['$rootScope', '$state', '$stateParams', 'gettextCatalog', 'currentLocale', '$location', '$window', '$breadcrumb', 'PageTitle', 'BastionConfig', 'repositoryTypes',
85
- function ($rootScope, $state, $stateParams, gettextCatalog, currentLocale, $location, $window, $breadcrumb, PageTitle, BastionConfig, repositoryTypes) {
83
+ angular.module('Bastion').run(['$rootScope', '$state', '$stateParams', 'gettextCatalog', 'currentLocale', '$location', '$window', '$breadcrumb', 'PageTitle', 'BastionConfig',
84
+ function ($rootScope, $state, $stateParams, gettextCatalog, currentLocale, $location, $window, $breadcrumb, PageTitle, BastionConfig) {
86
85
  var fromState, fromParams, orgSwitcherRegex;
87
86
 
88
87
  $rootScope.$state = $state;
89
88
  $rootScope.$stateParams = $stateParams;
90
89
  $rootScope.transitionTo = $state.transitionTo;
91
90
  $rootScope.$location = $location;
92
- $rootScope.$repositoryTypes = repositoryTypes;
93
- $rootScope.repositoryTypeEnabled = function(desiredType) {
94
- var found = _.find(repositoryTypes, function(type) {
95
- return type['id'] === desiredType;
96
- });
97
- return angular.isDefined(found);
98
- }
99
-
100
91
 
101
92
  $rootScope.isState = function (stateName) {
102
93
  return $state.is(stateName);
@@ -1,3 +1,3 @@
1
1
  module Bastion
2
- VERSION = "6.1.14"
2
+ VERSION = "6.1.15"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bastion
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.14
4
+ version: 6.1.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric D Helms
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-10-02 00:00:00.000000000 Z
12
+ date: 2018-10-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: angular-rails-templates