katello 3.17.0.rc2.2 → 3.17.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +9 -1
  3. data/app/controllers/katello/api/v2/host_tracer_controller.rb +16 -36
  4. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +12 -1
  5. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +23 -0
  6. data/app/lib/actions/katello/content_view/promote.rb +2 -2
  7. data/app/lib/actions/katello/content_view/promote_to_environment.rb +12 -3
  8. data/app/lib/actions/katello/content_view/publish.rb +18 -2
  9. data/app/lib/actions/katello/content_view_version/import.rb +36 -0
  10. data/app/lib/actions/katello/content_view_version/incremental_update.rb +1 -1
  11. data/app/lib/actions/katello/organization/create.rb +1 -1
  12. data/app/lib/actions/katello/organization/simple_content_access/disable.rb +8 -0
  13. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +8 -0
  14. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +16 -2
  15. data/app/lib/actions/katello/repository/multi_clone_contents.rb +8 -6
  16. data/app/lib/actions/pulp3/abstract_async_task.rb +1 -0
  17. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +20 -0
  18. data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +16 -0
  19. data/app/lib/actions/pulp3/content_view_version/import.rb +21 -0
  20. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +25 -0
  21. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +9 -1
  22. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +41 -0
  23. data/app/lib/actions/pulp3/repository/copy_content.rb +6 -1
  24. data/app/lib/actions/pulp3/repository/multi_copy_content.rb +1 -1
  25. data/app/lib/katello/resources/cdn.rb +3 -2
  26. data/app/lib/katello/util/cdn_var_substitutor.rb +9 -7
  27. data/app/models/katello/content_view.rb +6 -0
  28. data/app/models/katello/content_view_version.rb +10 -1
  29. data/app/models/katello/glue/pulp/repo.rb +1 -1
  30. data/app/models/katello/root_repository.rb +5 -1
  31. data/app/overrides/add_organization_attributes.rb +12 -0
  32. data/app/services/katello/host_trace_manager.rb +38 -0
  33. data/app/services/katello/pulp3/content_view_version/export.rb +25 -29
  34. data/app/services/katello/pulp3/content_view_version/import.rb +87 -0
  35. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +44 -0
  36. data/app/services/katello/pulp3/repository/yum.rb +72 -4
  37. data/app/services/katello/pulp3/task.rb +4 -4
  38. data/app/services/katello/pulp3/task_group.rb +6 -0
  39. data/app/services/katello/ui_notifications/subscriptions/sca_disable_error.rb +13 -0
  40. data/app/services/katello/ui_notifications/subscriptions/sca_disable_success.rb +13 -0
  41. data/app/services/katello/ui_notifications/subscriptions/sca_enable_error.rb +13 -0
  42. data/app/services/katello/ui_notifications/subscriptions/sca_enable_success.rb +13 -0
  43. data/app/views/overrides/organizations/_edit_override.html.erb +10 -1
  44. data/app/views/overrides/organizations/_index_header_override.html.erb +3 -0
  45. data/app/views/overrides/organizations/_index_row_override.html.erb +3 -0
  46. data/config/routes/api/v2.rb +1 -6
  47. data/config/routes/overrides.rb +4 -0
  48. data/db/seeds.d/109-katello-notification-blueprints.rb +24 -0
  49. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +2 -5
  50. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +4 -3
  51. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-subscriptions.controller.js +2 -4
  52. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +1 -1
  53. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-traces-modal.controller.js +3 -4
  54. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details-info.controller.js +2 -4
  55. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-repository-sets.controller.js +4 -3
  56. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-subscriptions.controller.js +2 -4
  57. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html +1 -1
  58. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  59. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +1 -1
  60. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -2
  61. data/lib/katello/permission_creator.rb +1 -1
  62. data/lib/katello/permissions/host_permissions.rb +1 -0
  63. data/lib/katello/tasks/pulp3_post_migration_check.rake +2 -1
  64. data/lib/katello/tasks/reimport.rake +1 -1
  65. data/lib/katello/version.rb +1 -1
  66. data/webpack/index.js +0 -1
  67. metadata +19 -5
  68. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-traces-resolve.factory.js +0 -18
@@ -9,7 +9,6 @@
9
9
  * @requires Nutupane
10
10
  * @requires BastionConfig
11
11
  * @requires hostIds
12
- * @requires HostTracesResolve
13
12
  * @required ContentHostsHelper
14
13
  * @requires translate
15
14
  *
@@ -18,8 +17,8 @@
18
17
  */
19
18
  /*jshint camelcase:false*/
20
19
  angular.module('Bastion.content-hosts').controller('ContentHostsBulkTracesController',
21
- ['$scope', '$uibModalInstance', 'HostBulkAction', 'Notification', 'Nutupane', 'BastionConfig', 'hostIds', 'HostTracesResolve', 'ContentHostsHelper', 'translate',
22
- function ($scope, $uibModalInstance, HostBulkAction, Notification, Nutupane, BastionConfig, hostIds, HostTracesResolve, ContentHostsHelper, translate) {
20
+ ['$scope', '$uibModalInstance', 'HostBulkAction', 'Notification', 'Nutupane', 'BastionConfig', 'hostIds', 'ContentHostsHelper', 'translate',
21
+ function ($scope, $uibModalInstance, HostBulkAction, Notification, Nutupane, BastionConfig, hostIds, ContentHostsHelper, translate) {
23
22
 
24
23
  var tracesNutupane = new Nutupane(HostBulkAction, hostIds, 'traces');
25
24
  tracesNutupane.enableSelectAllResults();
@@ -46,7 +45,7 @@ angular.module('Bastion.content-hosts').controller('ContentHostsBulkTracesContro
46
45
  });
47
46
  };
48
47
  /* eslint-disable camelcase */
49
- HostTracesResolve.resolve({trace_ids: traceids}, onSuccess, onFailure);
48
+ HostBulkAction.resolveTraces({trace_ids: traceids}, onSuccess, onFailure);
50
49
  /* eslint-enable camelcase */
51
50
  };
52
51
 
@@ -10,14 +10,13 @@
10
10
  * @requires Organization
11
11
  * @requires CurrentOrganization
12
12
  * @requires CurrentHostsHelper
13
- * @requires simpleContentAccessEnabled
14
13
  *
15
14
  * @description
16
15
  * Provides the functionality for the content host details action pane.
17
16
  */
18
17
  angular.module('Bastion.content-hosts').controller('ContentHostDetailsInfoController',
19
- ['$scope', '$q', 'translate', 'HostSubscription', 'ContentView', 'Organization', 'CurrentOrganization', 'ContentHostsHelper', 'simpleContentAccessEnabled',
20
- function ($scope, $q, translate, HostSubscription, ContentView, Organization, CurrentOrganization, ContentHostsHelper, simpleContentAccessEnabled) {
18
+ ['$scope', '$q', 'translate', 'HostSubscription', 'ContentView', 'Organization', 'CurrentOrganization', 'ContentHostsHelper',
19
+ function ($scope, $q, translate, HostSubscription, ContentView, Organization, CurrentOrganization, ContentHostsHelper) {
21
20
  function doubleColonNotationToObject(dotString) {
22
21
  var doubleColonObject = {}, tempObject, parts, part, key, property;
23
22
  for (property in dotString) {
@@ -46,7 +45,6 @@ angular.module('Bastion.content-hosts').controller('ContentHostDetailsInfoContro
46
45
  $scope.showCVAlert = false;
47
46
  $scope.editContentView = false;
48
47
  $scope.disableEnvironmentSelection = false;
49
- $scope.simpleContentAccessEnabled = simpleContentAccessEnabled;
50
48
  $scope.environments = [];
51
49
 
52
50
  $scope.environments = Organization.readableEnvironments({id: CurrentOrganization});
@@ -23,7 +23,8 @@ angular.module('Bastion.content-hosts').controller('ContentHostRepositorySetsCon
23
23
  'organization_id': CurrentOrganization,
24
24
  enabled: true,
25
25
  'full_result': true,
26
- 'include_available_content': true
26
+ 'include_available_content': true,
27
+ 'content_access_mode_all': $scope.simpleContentAccessEnabled
27
28
  };
28
29
 
29
30
  $scope.controllerName = 'katello_products';
@@ -31,11 +32,11 @@ angular.module('Bastion.content-hosts').controller('ContentHostRepositorySetsCon
31
32
  $scope.table = $scope.nutupane.table;
32
33
 
33
34
  $scope.contentAccessModes = {
34
- contentAccessModeAll: false,
35
+ contentAccessModeAll: $scope.simpleContentAccessEnabled,
35
36
  contentAccessModeEnv: false
36
37
  };
37
38
  $scope.toggleFilters = function () {
38
- $scope.nutupane.table.params['content_access_mode_all'] = $scope.contentAccessModes.contentAccessModeAll;
39
+ $scope.nutupane.table.params['content_access_mode_all'] = $scope.contentAccessModes.contentAccessModeAll || $scope.simpleContentAccessEnabled;
39
40
  $scope.nutupane.table.params['content_access_mode_env'] = $scope.contentAccessModes.contentAccessModeEnv;
40
41
  $scope.nutupane.refresh();
41
42
  };
@@ -8,14 +8,13 @@
8
8
  * @requires Subscription
9
9
  * @requires SubscriptionsHelper
10
10
  * @requires Notification
11
- * @requires simpleContentAccessEnabled
12
11
  *
13
12
  * @description
14
13
  * Provides the functionality for the content host details action pane.
15
14
  */
16
15
  angular.module('Bastion.content-hosts').controller('ContentHostSubscriptionsController',
17
- ['$scope', '$location', 'translate', 'Nutupane', 'CurrentOrganization', 'Subscription', 'Host', 'HostSubscription', 'SubscriptionsHelper', 'Notification', 'simpleContentAccessEnabled',
18
- function ($scope, $location, translate, Nutupane, CurrentOrganization, Subscription, Host, HostSubscription, SubscriptionsHelper, Notification, simpleContentAccessEnabled) {
16
+ ['$scope', '$location', 'translate', 'Nutupane', 'CurrentOrganization', 'Subscription', 'Host', 'HostSubscription', 'SubscriptionsHelper', 'Notification',
17
+ function ($scope, $location, translate, Nutupane, CurrentOrganization, Subscription, Host, HostSubscription, SubscriptionsHelper, Notification) {
19
18
 
20
19
  var params = {
21
20
  'organization_id': CurrentOrganization,
@@ -31,7 +30,6 @@ angular.module('Bastion.content-hosts').controller('ContentHostSubscriptionsCont
31
30
  $scope.nutupane.primaryOnly = true;
32
31
  $scope.isRemoving = false;
33
32
  $scope.contextAdd = false;
34
- $scope.simpleContentAccessEnabled = simpleContentAccessEnabled;
35
33
  $scope.groupedSubscriptions = {};
36
34
  $scope.$watch('table.rows', function (rows) {
37
35
  $scope.groupedSubscriptions = SubscriptionsHelper.groupByProductName(rows);
@@ -22,7 +22,7 @@
22
22
  </div>
23
23
 
24
24
  <div data-block="filters">
25
- <label class="checkbox-inline" title="{{ 'Show all Repository Sets in Organization' | translate }}">
25
+ <label class="checkbox-inline" title="{{ 'Show all Repository Sets in Organization' | translate }}" ng-if="!simpleContentAccessEnabled">
26
26
  <input type="checkbox" ng-model="contentAccessModes.contentAccessModeAll" ng-change="toggleFilters()"/>
27
27
  <span translate>Show All</span>
28
28
  </label>
@@ -26,7 +26,8 @@ angular.module('Bastion.hosts').factory('HostBulkAction',
26
26
  releaseVersion: {method: 'PUT', params: {action: 'release_version'}},
27
27
  availableIncrementalUpdates: {method: 'POST', isArray: true, params: {action: 'available_incremental_updates'}},
28
28
  moduleStreams: {method: 'POST', params: {action: 'module_streams'}},
29
- traces: {method: 'POST', params: {action: 'traces'}}
29
+ traces: {method: 'POST', params: {action: 'traces'}},
30
+ resolveTraces: {method: 'PUT', isArray: true, params: {action: 'resolve_traces'}}
30
31
  });
31
32
 
32
33
  }]
@@ -209,7 +209,7 @@
209
209
  <dt translate>Publish via HTTPS</dt>
210
210
  <dd translate>Yes</dd>
211
211
 
212
- <span ng-hide="repository.content_type === 'ostree'">
212
+ <span ng-hide="repository.content_type === 'ostree' || repository.content_type === 'docker'">
213
213
  <dt translate>Publish via HTTP</dt>
214
214
  <dd bst-edit-checkbox="repository.unprotected"
215
215
  formatter="booleanToYesNo"
@@ -63,7 +63,7 @@
63
63
  ng-model="repository.url"
64
64
  type="text"/>
65
65
  <p class="help-block" ng-show="repository.content_type === 'docker'" translate>
66
- URL of the registry you want to sync. Example: https://registry-1.docker.io/
66
+ URL of the registry you want to sync. Example: https://registry-1.docker.io/ or https://quay.io/
67
67
  </p>
68
68
  <p class="help-block" ng-show="repository.content_type === 'ansible_collection'" translate>
69
69
  Content synced depends on the specifity of the URL and/or the optional requirements.yaml specified below <a class="fa fa-question-circle" ng-show="repository.content_type === 'ansible_collection'"
@@ -144,7 +144,7 @@
144
144
  ng-model="repository.docker_upstream_name"
145
145
  type="text"/>
146
146
  <p class="help-block" translate>
147
- Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.
147
+ Name of the upstream repository you want to sync. Example: 'quay/busybox' or 'fedora/ssh'.
148
148
  </p>
149
149
 
150
150
  </div>
@@ -134,7 +134,7 @@ module Katello
134
134
  @plugin.permission :publish_content_views,
135
135
  {
136
136
  'katello/api/v2/content_views' => [:publish],
137
- 'katello/api/v2/content_view_versions' => [:incremental_update, :republish_repositories]
137
+ 'katello/api/v2/content_view_versions' => [:incremental_update, :republish_repositories, :import]
138
138
  },
139
139
  :resource_type => 'Katello::ContentView'
140
140
  @plugin.permission :promote_or_remove_content_views,
@@ -27,6 +27,7 @@ Foreman::AccessControl.permission(:edit_hosts).actions.concat [
27
27
  'katello/api/v2/hosts_bulk_actions/environment_content_view',
28
28
  'katello/api/v2/hosts_bulk_actions/release_version',
29
29
  'katello/api/v2/hosts_bulk_actions/traces',
30
+ 'katello/api/v2/hosts_bulk_actions/resolve_traces',
30
31
  'katello/api/rhsm/candlepin_dynflow_proxy/upload_package_profile',
31
32
  'katello/api/rhsm/candlepin_dynflow_proxy/upload_profiles',
32
33
  'katello/api/rhsm/candlepin_dynflow_proxy/deb_package_profile',
@@ -1,8 +1,9 @@
1
1
  require File.expand_path("../engine", File.dirname(__FILE__))
2
+ load "#{Katello::Engine.root}/lib/katello/tasks/common.rake"
2
3
 
3
4
  namespace :katello do
4
5
  desc "Runs a post Pulp3 migration check for supported content types."
5
- task :pulp3_post_migration_check => :environment do
6
+ task :pulp3_post_migration_check => [:environment, :disable_dynflow] do
6
7
  User.current = User.anonymous_admin
7
8
  repository_types = Katello::Pulp3::Migration.repository_types_for_migration
8
9
 
@@ -12,7 +12,7 @@ namespace :katello do
12
12
  end
13
13
 
14
14
  desc "Reimports information from backend systems"
15
- task :reimport => ["environment", "katello:check_ping"] do
15
+ task :reimport => ["dynflow:client", "katello:check_ping"] do
16
16
  User.current = User.anonymous_admin #set a user for orchestration
17
17
  Dir.glob(Katello::Engine.root.to_s + '/app/models/katello/*.rb').each { |file| require file }
18
18
 
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "3.17.0.rc2.2".freeze
2
+ VERSION = "3.17.0".freeze
3
3
  end
@@ -13,4 +13,3 @@ componentRegistry.register({
13
13
  name: 'katello',
14
14
  type: Application,
15
15
  });
16
-
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.17.0.rc2.2
4
+ version: 3.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-21 00:00:00.000000000 Z
11
+ date: 2020-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -860,6 +860,7 @@ files:
860
860
  - app/lib/actions/katello/content_view_version/create_repos.rb
861
861
  - app/lib/actions/katello/content_view_version/destroy.rb
862
862
  - app/lib/actions/katello/content_view_version/export.rb
863
+ - app/lib/actions/katello/content_view_version/import.rb
863
864
  - app/lib/actions/katello/content_view_version/incremental_update.rb
864
865
  - app/lib/actions/katello/content_view_version/republish_repositories.rb
865
866
  - app/lib/actions/katello/environment/destroy.rb
@@ -1043,10 +1044,15 @@ files:
1043
1044
  - app/lib/actions/pulp3/content_migration.rb
1044
1045
  - app/lib/actions/pulp3/content_view/delete_repository_references.rb
1045
1046
  - app/lib/actions/pulp3/content_view_version/create_exporter.rb
1047
+ - app/lib/actions/pulp3/content_view_version/create_importer.rb
1046
1048
  - app/lib/actions/pulp3/content_view_version/destroy_exporter.rb
1049
+ - app/lib/actions/pulp3/content_view_version/destroy_importer.rb
1047
1050
  - app/lib/actions/pulp3/content_view_version/export.rb
1051
+ - app/lib/actions/pulp3/content_view_version/import.rb
1048
1052
  - app/lib/actions/pulp3/import_migration.rb
1053
+ - app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb
1049
1054
  - app/lib/actions/pulp3/orchestration/content_view_version/export.rb
1055
+ - app/lib/actions/pulp3/orchestration/content_view_version/import.rb
1050
1056
  - app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb
1051
1057
  - app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb
1052
1058
  - app/lib/actions/pulp3/orchestration/repository/create.rb
@@ -1406,6 +1412,7 @@ files:
1406
1412
  - app/services/katello/event_monitor/poller_thread.rb
1407
1413
  - app/services/katello/event_queue.rb
1408
1414
  - app/services/katello/host_status_manager.rb
1415
+ - app/services/katello/host_trace_manager.rb
1409
1416
  - app/services/katello/managed_content_medium_provider.rb
1410
1417
  - app/services/katello/product_content_finder.rb
1411
1418
  - app/services/katello/product_content_importer.rb
@@ -1452,6 +1459,8 @@ files:
1452
1459
  - app/services/katello/pulp3/api/yum.rb
1453
1460
  - app/services/katello/pulp3/content.rb
1454
1461
  - app/services/katello/pulp3/content_view_version/export.rb
1462
+ - app/services/katello/pulp3/content_view_version/import.rb
1463
+ - app/services/katello/pulp3/content_view_version/import_export_common.rb
1455
1464
  - app/services/katello/pulp3/distribution.rb
1456
1465
  - app/services/katello/pulp3/docker_blob.rb
1457
1466
  - app/services/katello/pulp3/docker_manifest.rb
@@ -1495,6 +1504,10 @@ files:
1495
1504
  - app/services/katello/ui_notifications/subscriptions/manifest_import_success.rb
1496
1505
  - app/services/katello/ui_notifications/subscriptions/manifest_refresh_error.rb
1497
1506
  - app/services/katello/ui_notifications/subscriptions/manifest_refresh_success.rb
1507
+ - app/services/katello/ui_notifications/subscriptions/sca_disable_error.rb
1508
+ - app/services/katello/ui_notifications/subscriptions/sca_disable_success.rb
1509
+ - app/services/katello/ui_notifications/subscriptions/sca_enable_error.rb
1510
+ - app/services/katello/ui_notifications/subscriptions/sca_enable_success.rb
1498
1511
  - app/services/katello/ui_notifications/task_notification.rb
1499
1512
  - app/services/katello/upstream_connection_checker.rb
1500
1513
  - app/views/common/400.html
@@ -1758,6 +1771,8 @@ files:
1758
1771
  - app/views/overrides/activation_keys/_host_tab.html.erb
1759
1772
  - app/views/overrides/activation_keys/_host_tab_pane.html.erb
1760
1773
  - app/views/overrides/organizations/_edit_override.html.erb
1774
+ - app/views/overrides/organizations/_index_header_override.html.erb
1775
+ - app/views/overrides/organizations/_index_row_override.html.erb
1761
1776
  - app/views/overrides/organizations/_step_1_override.html.erb
1762
1777
  - app/views/overrides/smart_proxies/_download_policy.erb
1763
1778
  - app/views/overrides/smart_proxies/_environment_tab.html.erb
@@ -4202,7 +4217,6 @@ files:
4202
4217
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-module-streams.factory.js
4203
4218
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-package.factory.js
4204
4219
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-subscription.factory.js
4205
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-traces-resolve.factory.js
4206
4220
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-traces.factory.js
4207
4221
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host.factory.js
4208
4222
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/hosts.module.js
@@ -4995,9 +5009,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
4995
5009
  version: '0'
4996
5010
  required_rubygems_version: !ruby/object:Gem::Requirement
4997
5011
  requirements:
4998
- - - ">"
5012
+ - - ">="
4999
5013
  - !ruby/object:Gem::Version
5000
- version: 1.3.1
5014
+ version: '0'
5001
5015
  requirements: []
5002
5016
  rubygems_version: 3.1.4
5003
5017
  signing_key:
@@ -1,18 +0,0 @@
1
- /**
2
- * @ngdoc service
3
- * @name Bastion.hosts.factory:HostTracesResolve
4
- *
5
- * @requires BastionResource
6
- *
7
- * @description
8
- * Provides a BastionResource for resolving traces on a set of systems.
9
- */
10
- angular.module('Bastion.hosts').factory('HostTracesResolve',
11
- ['BastionResource', function (BastionResource) {
12
-
13
- return BastionResource('katello/api/v2/traces/:action', {}, {
14
- resolve: {method: 'PUT', isArray: true, params: {action: 'resolve'}}
15
- });
16
-
17
- }]
18
- );