katello 3.6.0.1.rc2 → 3.7.0.rc1

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 (530) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/hosts/activation_key_edit.js +2 -2
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +6 -4
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -3
  5. data/app/controllers/katello/api/v2/api_controller.rb +13 -3
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +116 -0
  7. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +6 -0
  9. data/app/controllers/katello/api/v2/content_views_controller.rb +2 -1
  10. data/app/controllers/katello/api/v2/environments_controller.rb +20 -3
  11. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -0
  12. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +14 -7
  13. data/app/controllers/katello/api/v2/products_controller.rb +31 -1
  14. data/app/controllers/katello/api/v2/repositories_controller.rb +103 -34
  15. data/app/controllers/katello/api/v2/repository_sets_controller.rb +22 -15
  16. data/app/controllers/katello/api/v2/subscriptions_controller.rb +31 -7
  17. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +93 -0
  18. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +2 -2
  19. data/app/helpers/katello/katello_urls_helper.rb +21 -4
  20. data/app/jobs/create_pulp_disk_space_notifications.rb +4 -0
  21. data/app/jobs/send_expire_soon_notifications.rb +13 -0
  22. data/app/lib/actions/candlepin/import_pool_handler.rb +5 -4
  23. data/app/lib/actions/candlepin/owner/import_products.rb +4 -2
  24. data/app/lib/actions/helpers/notifications.rb +35 -0
  25. data/app/lib/actions/katello/capsule_content/sync.rb +12 -1
  26. data/app/lib/actions/katello/content_view/{capsule_generate_and_sync.rb → capsule_sync.rb} +1 -1
  27. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  28. data/app/lib/actions/katello/content_view/publish.rb +40 -11
  29. data/app/lib/actions/katello/content_view/remove.rb +2 -2
  30. data/app/lib/actions/katello/environment/publish_repositories.rb +41 -0
  31. data/app/lib/actions/katello/event_queue/poller_thread.rb +10 -8
  32. data/app/lib/actions/katello/host/attach_subscriptions.rb +1 -1
  33. data/app/lib/actions/katello/host/remove_subscriptions.rb +1 -1
  34. data/app/lib/actions/katello/organization/manifest_delete.rb +22 -0
  35. data/app/lib/actions/katello/organization/manifest_import.rb +22 -0
  36. data/app/lib/actions/katello/organization/manifest_refresh.rb +22 -0
  37. data/app/lib/actions/katello/product/create.rb +3 -6
  38. data/app/lib/actions/katello/product/reindex_subscriptions.rb +3 -4
  39. data/app/lib/actions/katello/repository/{capsule_generate_and_sync.rb → capsule_sync.rb} +1 -1
  40. data/app/lib/actions/katello/repository/clone_yum_metadata.rb +2 -1
  41. data/app/lib/actions/katello/repository/create.rb +2 -1
  42. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -0
  43. data/app/lib/actions/katello/repository/import_upload.rb +38 -6
  44. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  45. data/app/lib/actions/katello/repository/sync.rb +8 -1
  46. data/app/lib/actions/katello/repository/sync_hook.rb +11 -0
  47. data/app/lib/actions/katello/repository/update.rb +4 -1
  48. data/app/lib/actions/katello/sync_plan/add_products.rb +1 -1
  49. data/app/lib/actions/katello/upstream_subscriptions/bind_entitlement.rb +31 -0
  50. data/app/lib/actions/katello/upstream_subscriptions/bind_entitlements.rb +28 -0
  51. data/app/lib/actions/katello/upstream_subscriptions/remove_entitlement.rb +22 -0
  52. data/app/lib/actions/katello/upstream_subscriptions/remove_entitlements.rb +35 -0
  53. data/app/lib/actions/katello/upstream_subscriptions/update_entitlement.rb +23 -0
  54. data/app/lib/actions/katello/upstream_subscriptions/update_entitlements.rb +37 -0
  55. data/app/lib/actions/middleware/execute_if_contents_changed.rb +1 -1
  56. data/app/lib/actions/pulp/repository/create.rb +3 -0
  57. data/app/lib/actions/pulp/repository/ensure_sync_notification.rb +11 -0
  58. data/app/lib/actions/pulp/repository/import_upload.rb +2 -2
  59. data/app/lib/katello/resources/candlepin.rb +68 -801
  60. data/app/lib/katello/resources/candlepin/activation_key.rb +101 -0
  61. data/app/lib/katello/resources/candlepin/c_p_user.rb +17 -0
  62. data/app/lib/katello/resources/candlepin/candlepin_ping.rb +19 -0
  63. data/app/lib/katello/resources/candlepin/consumer.rb +204 -0
  64. data/app/lib/katello/resources/candlepin/content.rb +36 -0
  65. data/app/lib/katello/resources/candlepin/entitlement.rb +22 -0
  66. data/app/lib/katello/resources/candlepin/environment.rb +44 -0
  67. data/app/lib/katello/resources/candlepin/job.rb +25 -0
  68. data/app/lib/katello/resources/candlepin/owner.rb +130 -0
  69. data/app/lib/katello/resources/candlepin/owner_info.rb +18 -0
  70. data/app/lib/katello/resources/candlepin/pool.rb +39 -0
  71. data/app/lib/katello/resources/candlepin/product.rb +116 -0
  72. data/app/lib/katello/resources/candlepin/proxy.rb +41 -0
  73. data/app/lib/katello/resources/candlepin/subscription.rb +31 -0
  74. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +41 -0
  75. data/app/lib/katello/resources/candlepin/upstream_entitlement.rb +19 -0
  76. data/app/lib/katello/resources/candlepin/upstream_owner.rb +15 -0
  77. data/app/lib/katello/resources/candlepin/upstream_pool.rb +17 -0
  78. data/app/lib/katello/util/data.rb +2 -4
  79. data/app/lib/katello/util/http_proxy.rb +29 -0
  80. data/app/lib/katello/util/model.rb +1 -1
  81. data/app/lib/katello/validators/container_image_name_validator.rb +18 -0
  82. data/app/lib/katello/validators/content_view_environment_org_validator.rb +14 -0
  83. data/app/lib/katello/validators/environment_docker_repositories_validator.rb +71 -0
  84. data/app/lib/katello/validators/gpg_key_content_type_validator.rb +22 -0
  85. data/app/models/katello/activation_key.rb +4 -2
  86. data/app/models/katello/authorization/content_view_history.rb +0 -1
  87. data/app/models/katello/authorization/pool.rb +0 -2
  88. data/app/models/katello/authorization/repository.rb +0 -2
  89. data/app/models/katello/capsule_lifecycle_environment.rb +2 -0
  90. data/app/models/katello/compliance_reason.rb +5 -0
  91. data/app/models/katello/concerns/content_facet_host_extensions.rb +5 -1
  92. data/app/models/katello/concerns/organization_extensions.rb +22 -0
  93. data/app/models/katello/concerns/smart_proxy_extensions.rb +3 -2
  94. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +2 -0
  95. data/app/models/katello/content.rb +5 -0
  96. data/app/models/katello/content_facet_applicable_rpm.rb +1 -0
  97. data/app/models/katello/content_view.rb +50 -82
  98. data/app/models/katello/content_view_component.rb +1 -0
  99. data/app/models/katello/content_view_docker_filter_rule.rb +0 -1
  100. data/app/models/katello/content_view_environment.rb +5 -3
  101. data/app/models/katello/content_view_filter.rb +2 -1
  102. data/app/models/katello/content_view_history.rb +3 -0
  103. data/app/models/katello/content_view_puppet_environment.rb +12 -0
  104. data/app/models/katello/content_view_puppet_module.rb +1 -0
  105. data/app/models/katello/content_view_version.rb +18 -1
  106. data/app/models/katello/docker_manifest.rb +2 -1
  107. data/app/models/katello/docker_manifest_list.rb +2 -1
  108. data/app/models/katello/docker_meta_tag.rb +22 -1
  109. data/app/models/katello/erratum.rb +17 -5
  110. data/app/models/katello/event.rb +2 -0
  111. data/app/models/katello/glue/candlepin/activation_key.rb +2 -2
  112. data/app/models/katello/glue/candlepin/candlepin_object.rb +7 -6
  113. data/app/models/katello/glue/candlepin/owner.rb +4 -3
  114. data/app/models/katello/glue/candlepin/pool.rb +51 -20
  115. data/app/models/katello/glue/candlepin/product.rb +3 -2
  116. data/app/models/katello/glue/candlepin/subscription.rb +16 -35
  117. data/app/models/katello/glue/pulp/repo.rb +26 -6
  118. data/app/models/katello/glue/pulp/repos.rb +6 -3
  119. data/app/models/katello/gpg_key.rb +29 -4
  120. data/app/models/katello/host/content_facet.rb +5 -3
  121. data/app/models/katello/host/subscription_facet.rb +55 -23
  122. data/app/models/katello/host_collection.rb +1 -0
  123. data/app/models/katello/host_collection_hosts.rb +1 -1
  124. data/app/models/katello/installed_package.rb +4 -0
  125. data/app/models/katello/installed_product.rb +33 -0
  126. data/app/models/katello/key_host_collection.rb +2 -2
  127. data/app/models/katello/kt_environment.rb +8 -0
  128. data/app/models/katello/ostree_branch.rb +1 -1
  129. data/app/models/katello/ping.rb +1 -0
  130. data/app/models/katello/pool.rb +13 -7
  131. data/app/models/katello/pool_product.rb +6 -0
  132. data/app/models/katello/product.rb +16 -6
  133. data/app/models/katello/product_content.rb +4 -0
  134. data/app/models/katello/pulp_task_status.rb +0 -46
  135. data/app/models/katello/repository.rb +96 -19
  136. data/app/models/katello/repository_docker_manifest.rb +1 -1
  137. data/app/models/katello/repository_docker_manifest_list.rb +1 -1
  138. data/app/models/katello/repository_ostree_branch.rb +1 -1
  139. data/app/models/katello/rhsm_fact_importer.rb +2 -17
  140. data/app/models/katello/subscription.rb +5 -5
  141. data/app/models/katello/subscription_facet_installed_product.rb +6 -0
  142. data/app/models/katello/subscription_facet_pool.rb +2 -0
  143. data/app/models/katello/sync_plan.rb +1 -0
  144. data/app/models/katello/upstream_pool.rb +112 -0
  145. data/app/models/setting/content.rb +11 -7
  146. data/app/services/katello/candlepin/consumer.rb +9 -2
  147. data/app/services/katello/candlepin/message_handler.rb +18 -35
  148. data/app/services/katello/candlepin/pool_service.rb +17 -0
  149. data/app/services/katello/event_queue.rb +11 -6
  150. data/app/services/katello/pulp/server.rb +3 -1
  151. data/app/services/katello/registration_manager.rb +9 -2
  152. data/app/services/katello/repository_type_manager.rb +2 -1
  153. data/app/services/katello/ui_notifications/abstract_notification.rb +29 -0
  154. data/app/services/katello/ui_notifications/content_view/auto_publish_failure.rb +22 -0
  155. data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +3 -4
  156. data/app/services/katello/ui_notifications/subscriptions/expire_soon.rb +65 -0
  157. data/app/services/katello/ui_notifications/subscriptions/manifest_delete_error.rb +13 -0
  158. data/app/services/katello/ui_notifications/subscriptions/manifest_delete_success.rb +13 -0
  159. data/app/services/katello/ui_notifications/subscriptions/manifest_import_error.rb +13 -0
  160. data/app/services/katello/ui_notifications/subscriptions/manifest_import_success.rb +13 -0
  161. data/app/services/katello/ui_notifications/subscriptions/manifest_refresh_error.rb +13 -0
  162. data/app/services/katello/ui_notifications/subscriptions/manifest_refresh_success.rb +13 -0
  163. data/app/services/katello/ui_notifications/task_notification.rb +26 -0
  164. data/app/views/foreman/job_templates/install_errata.erb +7 -2
  165. data/app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb +18 -0
  166. data/app/views/foreman/job_templates/install_group_-_katello_ansible_default.erb +16 -0
  167. data/app/views/foreman/job_templates/install_package_-_katello_ansible_default.erb +16 -0
  168. data/app/views/foreman/job_templates/remove_group_-_katello_ansible_default.erb +16 -0
  169. data/app/views/foreman/job_templates/remove_package_-_katello_ansible_default.erb +16 -0
  170. data/app/views/foreman/job_templates/restart_services_-_katello_ansible_default.erb +20 -0
  171. data/app/views/foreman/job_templates/update_group_-_katello_ansible_default.erb +16 -0
  172. data/app/views/foreman/job_templates/update_package_-_katello_ansible_default.erb +16 -0
  173. data/app/views/foreman/smart_proxies/_content_tab.html.erb +1 -1
  174. data/app/views/katello/api/v2/content_credentials/index.json.rabl +3 -0
  175. data/app/views/katello/api/v2/content_credentials/show.json.rabl +101 -0
  176. data/app/views/katello/api/v2/content_view_histories/show.json.rabl +13 -1
  177. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  178. data/app/views/katello/api/v2/environments/show.json.rabl +1 -0
  179. data/app/views/katello/api/v2/errata/{available_errata.rabl → available_errata.json.rabl} +0 -0
  180. data/app/views/katello/api/v2/errata/show.json.rabl +4 -0
  181. data/app/views/katello/api/v2/products/_product_content.json.rabl +6 -6
  182. data/app/views/katello/api/v2/products/base.json.rabl +3 -0
  183. data/app/views/katello/api/v2/products/show.json.rabl +12 -0
  184. data/app/views/katello/api/v2/repositories/base.json.rabl +2 -1
  185. data/app/views/katello/api/v2/repositories/show.json.rabl +19 -5
  186. data/app/views/katello/api/v2/subscription_facet/show.json.rabl +10 -14
  187. data/app/views/katello/api/v2/subscriptions/base.json.rabl +2 -1
  188. data/app/views/katello/api/v2/upstream_subscriptions/base.json.rabl +18 -0
  189. data/app/views/katello/api/v2/upstream_subscriptions/index.json.rabl +7 -0
  190. data/app/views/katello/sync_management/_products.html.erb +1 -1
  191. data/config/katello.yaml.example +10 -0
  192. data/config/routes.rb +3 -14
  193. data/config/routes/api/rhsm.rb +1 -0
  194. data/config/routes/api/v2.rb +16 -0
  195. data/db/migrate/20161014133811_move_content_view_version_description_to_histories.rb +2 -1
  196. data/db/migrate/20161214151548_move_content_source_id_to_content_facets.rb +2 -2
  197. data/db/migrate/20171110082124_add_ssl_certs_to_products_and_repos.rb +42 -0
  198. data/db/migrate/20171214050230_add_auto_publish_to_content_views.rb +5 -0
  199. data/db/migrate/20180117202932_sub_facet_add_installed_products.rb +20 -0
  200. data/db/migrate/20180119152210_add_compliance_reasons.rb +11 -0
  201. data/db/migrate/20180207232901_add_triggered_by_to_content_view_history.rb +7 -0
  202. data/db/migrate/20180218191449_add_manifest_refreshed_at_to_organization.rb +9 -0
  203. data/db/migrate/20180227094827_use_uuid_for_task_id.rb +26 -0
  204. data/db/migrate/20180323175122_add_registry_name_pattern_to_environment.rb +11 -0
  205. data/db/migrate/20180326145716_subscription_cp_id_change.rb +10 -0
  206. data/db/migrate/20180326150339_move_stacking_id.rb +25 -0
  207. data/db/migrate/20180326190408_move_subscription_products.rb +75 -0
  208. data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +5 -0
  209. data/db/migrate/20180410140909_add_organization_id_to_pool.rb +15 -0
  210. data/db/migrate/20180413153126_content_facet_applicable_rpms_index.rb +5 -0
  211. data/db/migrate/20180417031215_add_ignorable_content_to_repository.rb +5 -0
  212. data/db/migrate/20180521200848_drop_repo_rpms_timestamp_not_null.rb +18 -0
  213. data/db/seeds.d/109-katello-notification-blueprints.rb +42 -0
  214. data/db/seeds.d/110-content-view-autopublish.rb +15 -0
  215. data/db/seeds.d/75-job_templates.rb +3 -1
  216. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-add-subscriptions.controller.js +1 -1
  217. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details-info.controller.js +34 -3
  218. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-subscriptions.controller.js +1 -0
  219. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html +3 -1
  220. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion-katello-bootstrap.js +1 -1
  221. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +2 -2
  222. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/subscription-add-or-remove.html +2 -2
  223. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +83 -0
  224. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/{gpg-keys/gpg-keys.controller.js → content-credentials/content-credentials.controller.js} +8 -8
  225. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/{gpg-keys/gpg-keys.module.js → content-credentials/content-credentials.module.js} +3 -3
  226. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +76 -0
  227. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-type.filter.js +25 -0
  228. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/{gpg-keys/details/gpg-key-details-info.controller.js → content-credentials/details/content-credential-details-info.controller.js} +10 -10
  229. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +48 -0
  230. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-products.controller.js +36 -0
  231. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-repositories.controller.js +36 -0
  232. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +36 -0
  233. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/{gpg-keys/details/views/gpg-key-info.html → content-credentials/details/views/content-credential-info.html} +21 -12
  234. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/{gpg-keys/details/views/gpg-key-products.html → content-credentials/details/views/content-credential-products.html} +6 -2
  235. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/{gpg-keys/details/views/gpg-key-repositories.html → content-credentials/details/views/content-credential-repositories.html} +6 -4
  236. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/new/new-content-credential.controller.js +39 -0
  237. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/new/views/new-content-credential.html +53 -0
  238. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +55 -0
  239. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +31 -19
  240. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-host-collections-modal.controller.js +0 -1
  241. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-packages-modal.controller.js +4 -1
  242. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html +2 -2
  243. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +108 -1
  244. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html +2 -2
  245. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html +2 -2
  246. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +1 -1
  247. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js +3 -3
  248. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +9 -9
  249. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
  250. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +1 -1
  251. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-subscriptions.controller.js +1 -2
  252. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-subscriptions.controller.js +1 -1
  253. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +1 -1
  254. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +4 -4
  255. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html +1 -1
  256. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +1 -1
  257. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register.html +14 -4
  258. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +7 -4
  259. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +4 -2
  260. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +5 -3
  261. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +4 -2
  262. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +5 -3
  263. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +4 -2
  264. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +4 -2
  265. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +4 -2
  266. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +4 -2
  267. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +4 -2
  268. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +4 -2
  269. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +4 -2
  270. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +5 -3
  271. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +8 -9
  272. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +1 -1
  273. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +1 -1
  274. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +6 -2
  275. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +1 -1
  276. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +1 -1
  277. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +2 -2
  278. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js +5 -1
  279. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +8 -7
  280. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +3 -3
  281. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +14 -0
  282. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +12 -4
  283. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -0
  284. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +2 -1
  285. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +2 -2
  286. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +2 -2
  287. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html +1 -1
  288. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html +1 -1
  289. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html +1 -1
  290. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js +2 -2
  291. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html +4 -4
  292. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +1 -1
  293. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +3 -2
  294. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html +8 -0
  295. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-docker.html +9 -5
  296. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html +2 -2
  297. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html +2 -1
  298. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +18 -6
  299. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-content-hosts.controller.js +22 -8
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-repositories.controller.js +18 -2
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html +3 -3
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html +1 -1
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/incremental-update.service.js +3 -2
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +17 -6
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata.html +2 -2
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/README +4 -0
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +3465 -1541
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +10 -10
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +5 -5
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js +1 -1
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch-repositories.controller.js +18 -2
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch-repositories.html +1 -1
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package-repositories.controller.js +18 -2
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-info.html +2 -2
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html +1 -1
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package.html +2 -2
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.routes.js +1 -1
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/views/packages.html +1 -1
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-details-info.controller.js +32 -5
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +34 -13
  321. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +16 -0
  322. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +15 -2
  323. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +42 -4
  324. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html +2 -2
  325. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html +2 -2
  326. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html +7 -7
  327. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html +47 -0
  328. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-files.html +1 -1
  329. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-packages.html +1 -1
  330. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +10 -8
  331. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +43 -5
  332. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +11 -2
  333. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +39 -0
  334. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +6 -6
  335. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js +24 -0
  336. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-info.html +24 -0
  337. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +7 -7
  338. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +1 -1
  339. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +3 -3
  340. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/product-form.controller.js +7 -7
  341. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html +29 -2
  342. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +9 -3
  343. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.module.js +1 -1
  344. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html +2 -1
  345. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/details/subscription-details.controller.js +1 -1
  346. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/manifest-import.controller.js +12 -3
  347. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest-delete-modal.html +1 -1
  348. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/manifest/views/manifest-import.html +2 -2
  349. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task.factory.js +4 -7
  350. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/tasks-nutupane.factory.js +6 -1
  351. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/tasks-table.directive.js +6 -3
  352. data/engines/bastion_katello/lib/bastion_katello/engine.rb +1 -1
  353. data/lib/katello/apipie/validators.rb +0 -56
  354. data/lib/katello/engine.rb +6 -43
  355. data/lib/katello/permission_creator.rb +31 -4
  356. data/lib/katello/plugin.rb +124 -73
  357. data/lib/katello/scheduled_jobs.rb +10 -4
  358. data/lib/katello/tasks/job_templates.rake +16 -0
  359. data/lib/katello/tasks/reset.rake +0 -3
  360. data/lib/katello/tasks/upgrades/3.6/import_backend_consumer_attributes.rake +32 -0
  361. data/lib/katello/tasks/upgrades/3.7/make_all_ks_repos_bootable.rake +11 -0
  362. data/lib/katello/version.rb +1 -1
  363. data/locale/action_names.rb +52 -48
  364. data/locale/katello.pot +3136 -1999
  365. data/package.json +83 -0
  366. data/webpack/__mocks__/foremanReact/common/helpers.js +5 -0
  367. data/webpack/__mocks__/foremanReact/components/common/table.js +6 -0
  368. data/webpack/__mocks__/react-bootstrap-tooltip-button.js +6 -0
  369. data/webpack/components/MultiSelect/index.js +35 -0
  370. data/webpack/components/PaginationRow/PaginationRow.test.js +25 -0
  371. data/webpack/components/PaginationRow/__snapshots__/PaginationRow.test.js.snap +35 -0
  372. data/webpack/components/PaginationRow/index.js +90 -0
  373. data/webpack/components/Search/Search.test.js +20 -0
  374. data/webpack/components/Search/__snapshots__/Search.test.js.snap +18 -0
  375. data/webpack/components/Search/helpers.js +6 -0
  376. data/webpack/components/Search/index.js +86 -0
  377. data/webpack/containers/Application/Routes.js +11 -0
  378. data/webpack/containers/Application/config.js +21 -0
  379. data/webpack/containers/Application/index.js +39 -0
  380. data/webpack/containers/Application/overrides.scss +38 -0
  381. data/webpack/index.js +18 -0
  382. data/webpack/mockRequest.js +32 -0
  383. data/webpack/move_to_foreman/Settings/SettingsActions.js +28 -0
  384. data/webpack/move_to_foreman/Settings/SettingsConstants.js +3 -0
  385. data/webpack/move_to_foreman/Settings/__tests__/SettingsActions.test.js +41 -0
  386. data/webpack/move_to_foreman/Settings/__tests__/settings.fixtures.js +34 -0
  387. data/webpack/move_to_foreman/__mocks__/foreman_toast_notifications.js +3 -0
  388. data/webpack/move_to_foreman/common/helpers.js +36 -0
  389. data/webpack/move_to_foreman/components/common/ConfirmDialog/ConfirmDialog.js +50 -0
  390. data/webpack/move_to_foreman/components/common/ConfirmDialog/__tests__/ConfirmDialog.test.js +40 -0
  391. data/webpack/move_to_foreman/components/common/ConfirmDialog/__tests__/__snapshots__/ConfirmDialog.test.js.snap +125 -0
  392. data/webpack/move_to_foreman/components/common/ConfirmDialog/index.js +3 -0
  393. data/webpack/move_to_foreman/components/common/Dialog/Dialog.js +65 -0
  394. data/webpack/move_to_foreman/components/common/Dialog/__tests__/Dialog.test.js +61 -0
  395. data/webpack/move_to_foreman/components/common/Dialog/__tests__/__snapshots__/Dialog.test.js.snap +349 -0
  396. data/webpack/move_to_foreman/components/common/Dialog/index.js +3 -0
  397. data/webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.js +43 -0
  398. data/webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.scss +15 -0
  399. data/webpack/move_to_foreman/components/common/ModalProgressBar/__tests__/ModalProgressBar.test.js +22 -0
  400. data/webpack/move_to_foreman/components/common/ModalProgressBar/__tests__/__snapshots__/ModalProgressBar.test.js.snap +60 -0
  401. data/webpack/move_to_foreman/components/common/ModalProgressBar/index.js +4 -0
  402. data/webpack/move_to_foreman/components/common/emptyState/index.js +49 -0
  403. data/webpack/move_to_foreman/components/common/table/index.js +88 -0
  404. data/webpack/move_to_foreman/foreman_toast_notifications.js +22 -0
  405. data/webpack/move_to_pf/TypeAhead/TypeAhead.js +125 -0
  406. data/webpack/move_to_pf/TypeAhead/TypeAhead.scss +7 -0
  407. data/webpack/move_to_pf/TypeAhead/TypeAheadInput.js +47 -0
  408. data/webpack/move_to_pf/TypeAhead/TypeAheadItems.js +60 -0
  409. data/webpack/move_to_pf/TypeAhead/helpers.js +5 -0
  410. data/webpack/move_to_pf/react-bootstrap-select/index.js +65 -0
  411. data/webpack/redux/actions/RedHatRepositories/enabled.js +53 -0
  412. data/webpack/redux/actions/RedHatRepositories/helpers.js +38 -0
  413. data/webpack/redux/actions/RedHatRepositories/repositorySetRepositories.js +50 -0
  414. data/webpack/redux/actions/RedHatRepositories/sets.js +42 -0
  415. data/webpack/redux/consts.js +18 -0
  416. data/webpack/redux/index.js +9 -0
  417. data/webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js +149 -0
  418. data/webpack/redux/reducers/RedHatRepositories/enabled.js +80 -0
  419. data/webpack/redux/reducers/RedHatRepositories/enabled.test.js +36 -0
  420. data/webpack/redux/reducers/RedHatRepositories/filters.fixtures.js +5 -0
  421. data/webpack/redux/reducers/RedHatRepositories/index.js +10 -0
  422. data/webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.fixtures.js +135 -0
  423. data/webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.js +97 -0
  424. data/webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.test.js +66 -0
  425. data/webpack/redux/reducers/RedHatRepositories/sets.fixtures.js +123 -0
  426. data/webpack/redux/reducers/RedHatRepositories/sets.js +41 -0
  427. data/webpack/redux/reducers/RedHatRepositories/sets.test.js +36 -0
  428. data/webpack/redux/reducers/index.js +14 -0
  429. data/webpack/scenes/Organizations/OrganizationActions.js +60 -0
  430. data/webpack/scenes/Organizations/OrganizationConstants.js +7 -0
  431. data/webpack/scenes/Organizations/OrganizationReducer.js +32 -0
  432. data/webpack/scenes/Organizations/__tests__/OrganizationActions.test.js +59 -0
  433. data/webpack/scenes/Organizations/__tests__/OrganizationReducer.test.js +56 -0
  434. data/webpack/scenes/Organizations/__tests__/organizations.fixtures.js +99 -0
  435. data/webpack/scenes/RedHatRepositories/components/EnabledRepository.js +114 -0
  436. data/webpack/scenes/RedHatRepositories/components/EnabledRepository.stories.js +13 -0
  437. data/webpack/scenes/RedHatRepositories/components/RepositorySet.js +35 -0
  438. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js +64 -0
  439. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js +127 -0
  440. data/webpack/scenes/RedHatRepositories/components/RepositoryTypeIcon.js +33 -0
  441. data/webpack/scenes/RedHatRepositories/components/Search.js +91 -0
  442. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +145 -0
  443. data/webpack/scenes/RedHatRepositories/components/__tests__/RepositoryTypeIcon.test.js +28 -0
  444. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositoryTypeIcon.test.js.snap +143 -0
  445. data/webpack/scenes/RedHatRepositories/helpers.js +72 -0
  446. data/webpack/scenes/RedHatRepositories/index.js +91 -0
  447. data/webpack/scenes/RedHatRepositories/index.scss +63 -0
  448. data/webpack/scenes/Subscriptions/EntitlementsInlineEditFormatter.js +87 -0
  449. data/webpack/scenes/Subscriptions/Manifest/DeleteManifestModalText.js +22 -0
  450. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +243 -0
  451. data/webpack/scenes/Subscriptions/Manifest/Manifest.scss +3 -0
  452. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +114 -0
  453. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +15 -0
  454. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js +34 -0
  455. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js +46 -0
  456. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +26 -0
  457. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js +113 -0
  458. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js +36 -0
  459. data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +363 -0
  460. data/webpack/scenes/Subscriptions/Manifest/__tests__/manifest.fixtures.js +216 -0
  461. data/webpack/scenes/Subscriptions/Manifest/index.js +28 -0
  462. data/webpack/scenes/Subscriptions/SubscriptionActions.js +119 -0
  463. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +27 -0
  464. data/webpack/scenes/Subscriptions/SubscriptionHelpers.js +3 -0
  465. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +123 -0
  466. data/webpack/scenes/Subscriptions/SubscriptionValidations.js +25 -0
  467. data/webpack/scenes/Subscriptions/Subscriptions.scss +14 -0
  468. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +275 -0
  469. data/webpack/scenes/Subscriptions/SubscriptionsTable.js +336 -0
  470. data/webpack/scenes/Subscriptions/SubscriptionsTableSchema.js +117 -0
  471. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js +61 -0
  472. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsContstants.js +7 -0
  473. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +246 -0
  474. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js +59 -0
  475. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js +120 -0
  476. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsActions.test.js +64 -0
  477. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +22 -0
  478. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsReducer.test.js +57 -0
  479. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +226 -0
  480. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/upstreamSubscriptions.fixtures.js +162 -0
  481. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js +20 -0
  482. data/webpack/scenes/Subscriptions/__tests__/SubscriptionValidations.test.js +66 -0
  483. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsActions.test.js +126 -0
  484. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +26 -0
  485. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js +67 -0
  486. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsTable.test.js +47 -0
  487. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +198 -0
  488. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +419 -0
  489. data/webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js +364 -0
  490. data/webpack/scenes/Subscriptions/index.js +27 -0
  491. data/webpack/scenes/Tasks/TaskActions.js +75 -0
  492. data/webpack/scenes/Tasks/TaskConstants.js +7 -0
  493. data/webpack/scenes/Tasks/__tests__/TaskActions.test.js +81 -0
  494. data/webpack/scenes/Tasks/__tests__/task.fixtures.js +123 -0
  495. data/webpack/services/api/fixtures.js +353 -0
  496. data/webpack/services/api/index.js +105 -0
  497. data/webpack/services/api/setupMocks.js +17 -0
  498. data/webpack/services/index.js +59 -0
  499. data/webpack/stories/index.js +12 -0
  500. data/webpack/test_setup.js +9 -0
  501. metadata +265 -61
  502. data/app/assets/javascripts/katello/providers/provider_redhat.js +0 -185
  503. data/app/assets/javascripts/katello/providers/redhat/index.js +0 -3
  504. data/app/controllers/katello/products_controller.rb +0 -106
  505. data/app/controllers/katello/providers_controller.rb +0 -64
  506. data/app/helpers/katello/providers_helper.rb +0 -93
  507. data/app/models/katello/subscription_product.rb +0 -6
  508. data/app/views/foreman/unattended/finish-katello.erb +0 -60
  509. data/app/views/foreman/unattended/kickstart-katello-atomic.erb +0 -51
  510. data/app/views/foreman/unattended/kickstart-katello.erb +0 -139
  511. data/app/views/foreman/unattended/snippets/_subscription_manager_registration.erb +0 -18
  512. data/app/views/foreman/unattended/userdata-katello.erb +0 -92
  513. data/app/views/katello/providers/redhat/_enable_errors.html.erb +0 -12
  514. data/app/views/katello/providers/redhat/_errors.html.erb +0 -19
  515. data/app/views/katello/providers/redhat/_repo_sets.html.erb +0 -56
  516. data/app/views/katello/providers/redhat/_repos.html.erb +0 -60
  517. data/app/views/katello/providers/redhat/_tab.html.erb +0 -9
  518. data/app/views/katello/providers/redhat/show.html.erb +0 -35
  519. data/db/seeds.d/103-provisioning_templates.rb +0 -42
  520. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/errata-content-hosts.html +0 -28
  521. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/errata-details.html +0 -59
  522. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-details.controller.js +0 -48
  523. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-products.controller.js +0 -36
  524. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-repositories.controller.js +0 -36
  525. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-details.html +0 -36
  526. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-key.factory.js +0 -43
  527. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-keys.routes.js +0 -76
  528. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/new/new-gpg-key.controller.js +0 -39
  529. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/new/views/new-gpg-key.html +0 -44
  530. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys.html +0 -46
@@ -0,0 +1,105 @@
1
+ import axios from 'axios';
2
+ import Immutable from 'seamless-immutable';
3
+
4
+ const getcsrfToken = () => {
5
+ const token = document.querySelector('meta[name="csrf-token"]');
6
+ return token ? token.content : '';
7
+ };
8
+
9
+ axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
10
+ axios.defaults.headers.common['X-CSRF-Token'] = getcsrfToken();
11
+
12
+ export const initialApiState = Immutable({
13
+ loading: true,
14
+ pagination: {
15
+ page: 0,
16
+ perPage: 20,
17
+ },
18
+ itemCount: 0,
19
+ results: [],
20
+ });
21
+
22
+ class Api {
23
+ constructor() {
24
+ this.baseApiPath = '/katello/api/v2';
25
+ }
26
+
27
+ getApiUrl(url) {
28
+ return this.baseApiPath + url;
29
+ }
30
+
31
+ get(url, headers = {}, params = {}) {
32
+ return axios.get(this.getApiUrl(url), {
33
+ headers,
34
+ params,
35
+ });
36
+ }
37
+
38
+ put(url, data = {}, headers = {}) {
39
+ return axios.put(this.getApiUrl(url), data, {
40
+ headers,
41
+ });
42
+ }
43
+
44
+ post(url, data = {}, headers = {}) {
45
+ return axios.post(this.getApiUrl(url), data, {
46
+ headers,
47
+ });
48
+ }
49
+
50
+ delete(url, headers = {}, data = {}) {
51
+ return axios.delete(this.getApiUrl(url), {
52
+ headers,
53
+ data,
54
+ });
55
+ }
56
+
57
+ patch(url, data = {}, headers = {}) {
58
+ return axios.patch(this.getApiUrl(url), data, {
59
+ headers,
60
+ });
61
+ }
62
+
63
+ // Use for endpoints that return a file to download
64
+ open(url, params) {
65
+ window.location.href = this.getApiUrl(url) + this.createUrlParams(params);
66
+ }
67
+
68
+ /* eslint-disable class-methods-use-this */
69
+ createUrlParams(params) {
70
+ let urlParams = '?';
71
+ Object.keys(params).forEach((key) => {
72
+ if (urlParams !== '?') {
73
+ urlParams += '&';
74
+ }
75
+ urlParams += `${key}=${encodeURIComponent(params[key])}`;
76
+ });
77
+ return urlParams;
78
+ }
79
+ /* eslint-enable class-methods-use-this */
80
+ }
81
+
82
+ export default new Api();
83
+
84
+ class ForemanApi extends Api {
85
+ constructor() {
86
+ super();
87
+ this.baseApiPath = '/api/v2';
88
+ }
89
+ }
90
+
91
+ export const foremanApi = new ForemanApi();
92
+
93
+ class ForemanTasksApi extends Api {
94
+ constructor() {
95
+ super();
96
+ this.baseApiPath = '/foreman_tasks/api';
97
+ }
98
+ }
99
+
100
+ export const foremanTasksApi = new ForemanTasksApi();
101
+
102
+ // eslint-disable-next-line import/prefer-default-export
103
+ const orgNode = document.getElementById('organization-id');
104
+ // This node does not exist while testing
105
+ export const orgId = orgNode ? orgNode.dataset.id : '1';
@@ -0,0 +1,17 @@
1
+ import axios from 'axios';
2
+ import MockAdapter from 'axios-mock-adapter';
3
+
4
+ import fixtures from './fixtures';
5
+
6
+ const mock = new MockAdapter(axios, { delayResponse: 800 });
7
+
8
+ fixtures.forEach((request) => {
9
+ if (request.type === 'PUT') {
10
+ mock.onPut(request.searchRegex).reply(request.response);
11
+ } else {
12
+ mock.onGet(request.searchRegex).reply(request.response);
13
+ }
14
+ });
15
+
16
+ // Pass unmatched requests to the network
17
+ mock.onAny().passThrough();
@@ -0,0 +1,59 @@
1
+ import { reduce, snakeCase } from 'lodash';
2
+
3
+ // eslint-disable-next-line import/prefer-default-export
4
+ export function getTypeIcon(type) {
5
+ const typeIcon = { name: '', type: '' };
6
+
7
+ switch (type) {
8
+ case 'yum':
9
+ typeIcon.name = 'bundle';
10
+ typeIcon.type = 'pf';
11
+ break;
12
+ case 'source_rpm':
13
+ typeIcon.name = 'code';
14
+ typeIcon.type = 'fa';
15
+ break;
16
+ case 'file':
17
+ typeIcon.name = 'file';
18
+ typeIcon.type = 'fa';
19
+ break;
20
+ case 'debug':
21
+ typeIcon.name = 'bug';
22
+ typeIcon.type = 'fa';
23
+ break;
24
+ case 'iso':
25
+ typeIcon.name = 'file-image-o';
26
+ typeIcon.type = 'fa';
27
+ break;
28
+ case 'beta':
29
+ typeIcon.name = 'bold';
30
+ typeIcon.type = 'fa';
31
+ break;
32
+ case 'kickstart':
33
+ typeIcon.name = 'futbol-o';
34
+ typeIcon.type = 'fa';
35
+ break;
36
+ case 'containerimage':
37
+ typeIcon.name = 'cube';
38
+ typeIcon.type = 'fa';
39
+ break;
40
+ default:
41
+ typeIcon.name = 'question';
42
+ typeIcon.type = 'fa';
43
+ break;
44
+ }
45
+ return typeIcon;
46
+ }
47
+
48
+ export const propsToSnakeCase = (ob) => {
49
+ if (typeof (ob) !== 'object') throw Error('propsToSnakeCase only takes objects');
50
+ return reduce(
51
+ ob,
52
+ (snakeOb, val, key) => {
53
+ // eslint-disable-next-line no-param-reassign
54
+ snakeOb[snakeCase(key)] = val;
55
+ return snakeOb;
56
+ },
57
+ {},
58
+ );
59
+ };
@@ -0,0 +1,12 @@
1
+ import { configure } from '@storybook/react';
2
+
3
+ require('patternfly/dist/css/patternfly.min.css');
4
+ require('patternfly/dist/css/patternfly-additions.min.css');
5
+
6
+ const req = require.context('../', true, /.stories.js$/);
7
+
8
+ function loadStories() {
9
+ req.keys().forEach(filename => req(filename));
10
+ }
11
+
12
+ configure(loadStories, module);
@@ -0,0 +1,9 @@
1
+ // Setup file for enzyme
2
+ // See http://airbnb.io/enzyme/docs/installation/react-16.html
3
+ import { configure } from 'enzyme';
4
+ import Adapter from 'enzyme-adapter-react-16';
5
+
6
+ configure({ adapter: new Adapter() });
7
+
8
+ // Mocking translation function
9
+ global.__ = text => text; // eslint-disable-line
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.6.0.1.rc2
4
+ version: 3.7.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-06 00:00:00.000000000 Z
11
+ date: 2018-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -86,28 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 0.11.0
89
+ version: '0.12'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 0.11.0
97
- - !ruby/object:Gem::Dependency
98
- name: dynflow
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: 0.8.31
104
- type: :runtime
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
110
- version: 0.8.31
96
+ version: '0.12'
111
97
  - !ruby/object:Gem::Dependency
112
98
  name: foreman_docker
113
99
  requirement: !ruby/object:Gem::Requirement
@@ -170,7 +156,7 @@ dependencies:
170
156
  requirements:
171
157
  - - ">="
172
158
  - !ruby/object:Gem::Version
173
- version: 2.6.0
159
+ version: 2.8.1
174
160
  - - "<"
175
161
  - !ruby/object:Gem::Version
176
162
  version: 3.0.0
@@ -180,7 +166,7 @@ dependencies:
180
166
  requirements:
181
167
  - - ">="
182
168
  - !ruby/object:Gem::Version
183
- version: 2.6.0
169
+ version: 2.8.1
184
170
  - - "<"
185
171
  - !ruby/object:Gem::Version
186
172
  version: 3.0.0
@@ -224,7 +210,7 @@ dependencies:
224
210
  requirements:
225
211
  - - ">="
226
212
  - !ruby/object:Gem::Version
227
- version: 6.1.2
213
+ version: 6.1.9
228
214
  - - "<"
229
215
  - !ruby/object:Gem::Version
230
216
  version: 7.0.0
@@ -234,7 +220,7 @@ dependencies:
234
220
  requirements:
235
221
  - - ">="
236
222
  - !ruby/object:Gem::Version
237
- version: 6.1.2
223
+ version: 6.1.9
238
224
  - - "<"
239
225
  - !ruby/object:Gem::Version
240
226
  version: 7.0.0
@@ -350,6 +336,20 @@ dependencies:
350
336
  - - ">="
351
337
  - !ruby/object:Gem::Version
352
338
  version: '0'
339
+ - !ruby/object:Gem::Dependency
340
+ name: robottelo_reporter
341
+ requirement: !ruby/object:Gem::Requirement
342
+ requirements:
343
+ - - ">="
344
+ - !ruby/object:Gem::Version
345
+ version: '0'
346
+ type: :development
347
+ prerelease: false
348
+ version_requirements: !ruby/object:Gem::Requirement
349
+ requirements:
350
+ - - ">="
351
+ - !ruby/object:Gem::Version
352
+ version: '0'
353
353
  description: Content and Subscription Management plugin for Foreman
354
354
  email:
355
355
  - katello-devel@redhat.com
@@ -434,8 +434,6 @@ files:
434
434
  - app/assets/javascripts/katello/html5/html5.js
435
435
  - app/assets/javascripts/katello/html5/index.js
436
436
  - app/assets/javascripts/katello/organizations/download_certificate.js
437
- - app/assets/javascripts/katello/providers/provider_redhat.js
438
- - app/assets/javascripts/katello/providers/redhat/index.js
439
437
  - app/assets/javascripts/katello/sync_management/index.js
440
438
  - app/assets/javascripts/katello/sync_management/sync_management.js
441
439
  - app/assets/javascripts/katello/widgets/auto_complete.js
@@ -467,6 +465,7 @@ files:
467
465
  - app/controllers/katello/api/v2/api_controller.rb
468
466
  - app/controllers/katello/api/v2/capsule_content_controller.rb
469
467
  - app/controllers/katello/api/v2/capsules_controller.rb
468
+ - app/controllers/katello/api/v2/content_credentials_controller.rb
470
469
  - app/controllers/katello/api/v2/content_uploads_controller.rb
471
470
  - app/controllers/katello/api/v2/content_view_components_controller.rb
472
471
  - app/controllers/katello/api/v2/content_view_filter_rules_controller.rb
@@ -506,6 +505,7 @@ files:
506
505
  - app/controllers/katello/api/v2/subscriptions_controller.rb
507
506
  - app/controllers/katello/api/v2/sync_controller.rb
508
507
  - app/controllers/katello/api/v2/sync_plans_controller.rb
508
+ - app/controllers/katello/api/v2/upstream_subscriptions_controller.rb
509
509
  - app/controllers/katello/application_controller.rb
510
510
  - app/controllers/katello/auto_complete_search_controller.rb
511
511
  - app/controllers/katello/concerns/api/api_controller.rb
@@ -523,8 +523,6 @@ files:
523
523
  - app/controllers/katello/concerns/smart_proxies_controller_extensions.rb
524
524
  - app/controllers/katello/errata_controller.rb
525
525
  - app/controllers/katello/http_errors.rb
526
- - app/controllers/katello/products_controller.rb
527
- - app/controllers/katello/providers_controller.rb
528
526
  - app/controllers/katello/react_controller.rb
529
527
  - app/controllers/katello/remote_execution_controller.rb
530
528
  - app/controllers/katello/sync_management_controller.rb
@@ -540,11 +538,11 @@ files:
540
538
  - app/helpers/katello/katello_urls_helper.rb
541
539
  - app/helpers/katello/layout_helper.rb
542
540
  - app/helpers/katello/organizations_helper.rb
543
- - app/helpers/katello/providers_helper.rb
544
541
  - app/helpers/katello/sync_management_helper.rb
545
542
  - app/helpers/katello/taxonomy_helper.rb
546
543
  - app/helpers/katello/translation_helper.rb
547
544
  - app/jobs/create_pulp_disk_space_notifications.rb
545
+ - app/jobs/send_expire_soon_notifications.rb
548
546
  - app/lib/actions/abstract_async_task.rb
549
547
  - app/lib/actions/candlepin/abstract.rb
550
548
  - app/lib/actions/candlepin/abstract_async_task.rb
@@ -583,6 +581,7 @@ files:
583
581
  - app/lib/actions/candlepin/product/delete_subscriptions.rb
584
582
  - app/lib/actions/candlepin/product/destroy.rb
585
583
  - app/lib/actions/foreman/environment/destroy.rb
584
+ - app/lib/actions/helpers/notifications.rb
586
585
  - app/lib/actions/helpers/presenter.rb
587
586
  - app/lib/actions/katello/activation_key/create.rb
588
587
  - app/lib/actions/katello/activation_key/destroy.rb
@@ -594,7 +593,7 @@ files:
594
593
  - app/lib/actions/katello/capsule_content/remove_unneeded_repos.rb
595
594
  - app/lib/actions/katello/capsule_content/sync.rb
596
595
  - app/lib/actions/katello/content_view/add_to_environment.rb
597
- - app/lib/actions/katello/content_view/capsule_generate_and_sync.rb
596
+ - app/lib/actions/katello/content_view/capsule_sync.rb
598
597
  - app/lib/actions/katello/content_view/create.rb
599
598
  - app/lib/actions/katello/content_view/destroy.rb
600
599
  - app/lib/actions/katello/content_view/environment_create.rb
@@ -624,6 +623,7 @@ files:
624
623
  - app/lib/actions/katello/content_view_version/republish_repositories.rb
625
624
  - app/lib/actions/katello/environment/destroy.rb
626
625
  - app/lib/actions/katello/environment/library_create.rb
626
+ - app/lib/actions/katello/environment/publish_repositories.rb
627
627
  - app/lib/actions/katello/event_queue/monitor.rb
628
628
  - app/lib/actions/katello/event_queue/poller_thread.rb
629
629
  - app/lib/actions/katello/event_queue/suspended_action.rb
@@ -666,7 +666,7 @@ files:
666
666
  - app/lib/actions/katello/provider/destroy.rb
667
667
  - app/lib/actions/katello/provider/update.rb
668
668
  - app/lib/actions/katello/repository/bulk_metadata_generate.rb
669
- - app/lib/actions/katello/repository/capsule_generate_and_sync.rb
669
+ - app/lib/actions/katello/repository/capsule_sync.rb
670
670
  - app/lib/actions/katello/repository/check_matching_content.rb
671
671
  - app/lib/actions/katello/repository/clear.rb
672
672
  - app/lib/actions/katello/repository/clone_deb_content.rb
@@ -697,6 +697,7 @@ files:
697
697
  - app/lib/actions/katello/repository/remove_content.rb
698
698
  - app/lib/actions/katello/repository/scheduled_sync.rb
699
699
  - app/lib/actions/katello/repository/sync.rb
700
+ - app/lib/actions/katello/repository/sync_hook.rb
700
701
  - app/lib/actions/katello/repository/update.rb
701
702
  - app/lib/actions/katello/repository/upload_errata.rb
702
703
  - app/lib/actions/katello/repository/upload_files.rb
@@ -708,6 +709,12 @@ files:
708
709
  - app/lib/actions/katello/sync_plan/destroy.rb
709
710
  - app/lib/actions/katello/sync_plan/remove_products.rb
710
711
  - app/lib/actions/katello/sync_plan/update.rb
712
+ - app/lib/actions/katello/upstream_subscriptions/bind_entitlement.rb
713
+ - app/lib/actions/katello/upstream_subscriptions/bind_entitlements.rb
714
+ - app/lib/actions/katello/upstream_subscriptions/remove_entitlement.rb
715
+ - app/lib/actions/katello/upstream_subscriptions/remove_entitlements.rb
716
+ - app/lib/actions/katello/upstream_subscriptions/update_entitlement.rb
717
+ - app/lib/actions/katello/upstream_subscriptions/update_entitlements.rb
711
718
  - app/lib/actions/middleware/backend_services_check.rb
712
719
  - app/lib/actions/middleware/candlepin_services_check.rb
713
720
  - app/lib/actions/middleware/execute_if_contents_changed.rb
@@ -761,6 +768,7 @@ files:
761
768
  - app/lib/actions/pulp/repository/destroy.rb
762
769
  - app/lib/actions/pulp/repository/distributor_publish.rb
763
770
  - app/lib/actions/pulp/repository/download.rb
771
+ - app/lib/actions/pulp/repository/ensure_sync_notification.rb
764
772
  - app/lib/actions/pulp/repository/import_upload.rb
765
773
  - app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb
766
774
  - app/lib/actions/pulp/repository/presenters/deb_presenter.rb
@@ -810,12 +818,31 @@ files:
810
818
  - app/lib/katello/mapping.rb
811
819
  - app/lib/katello/repo_discovery.rb
812
820
  - app/lib/katello/resources/candlepin.rb
821
+ - app/lib/katello/resources/candlepin/activation_key.rb
822
+ - app/lib/katello/resources/candlepin/c_p_user.rb
823
+ - app/lib/katello/resources/candlepin/candlepin_ping.rb
824
+ - app/lib/katello/resources/candlepin/consumer.rb
825
+ - app/lib/katello/resources/candlepin/content.rb
826
+ - app/lib/katello/resources/candlepin/entitlement.rb
827
+ - app/lib/katello/resources/candlepin/environment.rb
828
+ - app/lib/katello/resources/candlepin/job.rb
829
+ - app/lib/katello/resources/candlepin/owner.rb
830
+ - app/lib/katello/resources/candlepin/owner_info.rb
831
+ - app/lib/katello/resources/candlepin/pool.rb
832
+ - app/lib/katello/resources/candlepin/product.rb
833
+ - app/lib/katello/resources/candlepin/proxy.rb
834
+ - app/lib/katello/resources/candlepin/subscription.rb
835
+ - app/lib/katello/resources/candlepin/upstream_consumer.rb
836
+ - app/lib/katello/resources/candlepin/upstream_entitlement.rb
837
+ - app/lib/katello/resources/candlepin/upstream_owner.rb
838
+ - app/lib/katello/resources/candlepin/upstream_pool.rb
813
839
  - app/lib/katello/resources/cdn.rb
814
840
  - app/lib/katello/util/cdn_var_substitutor.rb
815
841
  - app/lib/katello/util/data.rb
816
842
  - app/lib/katello/util/docker_manifest_clause_generator.rb
817
843
  - app/lib/katello/util/errata.rb
818
844
  - app/lib/katello/util/filter_clause_generator.rb
845
+ - app/lib/katello/util/http_proxy.rb
819
846
  - app/lib/katello/util/model.rb
820
847
  - app/lib/katello/util/package.rb
821
848
  - app/lib/katello/util/package_clause_generator.rb
@@ -826,11 +853,15 @@ files:
826
853
  - app/lib/katello/util/support.rb
827
854
  - app/lib/katello/util/task_status.rb
828
855
  - app/lib/katello/util/url_matcher.rb
856
+ - app/lib/katello/validators/container_image_name_validator.rb
829
857
  - app/lib/katello/validators/content_validator.rb
858
+ - app/lib/katello/validators/content_view_environment_org_validator.rb
830
859
  - app/lib/katello/validators/content_view_environment_validator.rb
831
860
  - app/lib/katello/validators/content_view_erratum_filter_rule_validator.rb
832
861
  - app/lib/katello/validators/content_view_filter_version_validator.rb
833
862
  - app/lib/katello/validators/content_view_puppet_module_validator.rb
863
+ - app/lib/katello/validators/environment_docker_repositories_validator.rb
864
+ - app/lib/katello/validators/gpg_key_content_type_validator.rb
834
865
  - app/lib/katello/validators/gpg_key_content_validator.rb
835
866
  - app/lib/katello/validators/hostgroup_kickstart_repository_validator.rb
836
867
  - app/lib/katello/validators/katello_label_format_validator.rb
@@ -866,6 +897,7 @@ files:
866
897
  - app/models/katello/candlepin/docker_repository_mapper.rb
867
898
  - app/models/katello/candlepin/repository_mapper.rb
868
899
  - app/models/katello/capsule_lifecycle_environment.rb
900
+ - app/models/katello/compliance_reason.rb
869
901
  - app/models/katello/concerns/container_extensions.rb
870
902
  - app/models/katello/concerns/content_facet_host_extensions.rb
871
903
  - app/models/katello/concerns/content_view_filter_rule_common.rb
@@ -950,6 +982,7 @@ files:
950
982
  - app/models/katello/host_tracer.rb
951
983
  - app/models/katello/input_template_renderer.rb
952
984
  - app/models/katello/installed_package.rb
985
+ - app/models/katello/installed_product.rb
953
986
  - app/models/katello/key_host_collection.rb
954
987
  - app/models/katello/kt_environment.rb
955
988
  - app/models/katello/model.rb
@@ -958,6 +991,7 @@ files:
958
991
  - app/models/katello/ping.rb
959
992
  - app/models/katello/pool.rb
960
993
  - app/models/katello/pool_activation_key.rb
994
+ - app/models/katello/pool_product.rb
961
995
  - app/models/katello/pool_with_quantities.rb
962
996
  - app/models/katello/product.rb
963
997
  - app/models/katello/product_content.rb
@@ -984,12 +1018,13 @@ files:
984
1018
  - app/models/katello/srpm.rb
985
1019
  - app/models/katello/subscription.rb
986
1020
  - app/models/katello/subscription_facet_activation_key.rb
1021
+ - app/models/katello/subscription_facet_installed_product.rb
987
1022
  - app/models/katello/subscription_facet_pool.rb
988
- - app/models/katello/subscription_product.rb
989
1023
  - app/models/katello/subscription_status.rb
990
1024
  - app/models/katello/sync_plan.rb
991
1025
  - app/models/katello/task_status.rb
992
1026
  - app/models/katello/trace_status.rb
1027
+ - app/models/katello/upstream_pool.rb
993
1028
  - app/models/setting/content.rb
994
1029
  - app/overrides/add_about_page.rb
995
1030
  - app/overrides/add_activation_keys_input.rb
@@ -1010,6 +1045,7 @@ files:
1010
1045
  - app/services/katello/authentication/client_authentication.rb
1011
1046
  - app/services/katello/candlepin/consumer.rb
1012
1047
  - app/services/katello/candlepin/message_handler.rb
1048
+ - app/services/katello/candlepin/pool_service.rb
1013
1049
  - app/services/katello/event_queue.rb
1014
1050
  - app/services/katello/product_content_finder.rb
1015
1051
  - app/services/katello/proxy_status/pulp.rb
@@ -1035,7 +1071,17 @@ files:
1035
1071
  - app/services/katello/registration_manager.rb
1036
1072
  - app/services/katello/repository_type.rb
1037
1073
  - app/services/katello/repository_type_manager.rb
1074
+ - app/services/katello/ui_notifications/abstract_notification.rb
1075
+ - app/services/katello/ui_notifications/content_view/auto_publish_failure.rb
1038
1076
  - app/services/katello/ui_notifications/pulp/proxy_disk_space.rb
1077
+ - app/services/katello/ui_notifications/subscriptions/expire_soon.rb
1078
+ - app/services/katello/ui_notifications/subscriptions/manifest_delete_error.rb
1079
+ - app/services/katello/ui_notifications/subscriptions/manifest_delete_success.rb
1080
+ - app/services/katello/ui_notifications/subscriptions/manifest_import_error.rb
1081
+ - app/services/katello/ui_notifications/subscriptions/manifest_import_success.rb
1082
+ - app/services/katello/ui_notifications/subscriptions/manifest_refresh_error.rb
1083
+ - app/services/katello/ui_notifications/subscriptions/manifest_refresh_success.rb
1084
+ - app/services/katello/ui_notifications/task_notification.rb
1039
1085
  - app/views/common/400.html
1040
1086
  - app/views/dashboard/_content_views_widget.html.erb
1041
1087
  - app/views/dashboard/_errata_widget.html.erb
@@ -1044,21 +1090,24 @@ files:
1044
1090
  - app/views/dashboard/_subscription_widget.html.erb
1045
1091
  - app/views/dashboard/_sync_widget.html.erb
1046
1092
  - app/views/foreman/job_templates/install_errata.erb
1093
+ - app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb
1047
1094
  - app/views/foreman/job_templates/install_group.erb
1095
+ - app/views/foreman/job_templates/install_group_-_katello_ansible_default.erb
1048
1096
  - app/views/foreman/job_templates/install_package.erb
1097
+ - app/views/foreman/job_templates/install_package_-_katello_ansible_default.erb
1049
1098
  - app/views/foreman/job_templates/remove_group.erb
1099
+ - app/views/foreman/job_templates/remove_group_-_katello_ansible_default.erb
1050
1100
  - app/views/foreman/job_templates/remove_package.erb
1101
+ - app/views/foreman/job_templates/remove_package_-_katello_ansible_default.erb
1051
1102
  - app/views/foreman/job_templates/restart_services.erb
1103
+ - app/views/foreman/job_templates/restart_services_-_katello_ansible_default.erb
1052
1104
  - app/views/foreman/job_templates/update_group.erb
1105
+ - app/views/foreman/job_templates/update_group_-_katello_ansible_default.erb
1053
1106
  - app/views/foreman/job_templates/update_package.erb
1107
+ - app/views/foreman/job_templates/update_package_-_katello_ansible_default.erb
1054
1108
  - app/views/foreman/smart_proxies/_content_sync.html.erb
1055
1109
  - app/views/foreman/smart_proxies/_content_tab.html.erb
1056
1110
  - app/views/foreman/smart_proxies/show.html.erb
1057
- - app/views/foreman/unattended/finish-katello.erb
1058
- - app/views/foreman/unattended/kickstart-katello-atomic.erb
1059
- - app/views/foreman/unattended/kickstart-katello.erb
1060
- - app/views/foreman/unattended/snippets/_subscription_manager_registration.erb
1061
- - app/views/foreman/unattended/userdata-katello.erb
1062
1111
  - app/views/foreman_docker/containers/steps/_katello_container.html.erb
1063
1112
  - app/views/katello/api/v2/activation_keys/available_host_collections.json.rabl
1064
1113
  - app/views/katello/api/v2/activation_keys/available_releases.json.rabl
@@ -1083,6 +1132,8 @@ files:
1083
1132
  - app/views/katello/api/v2/common/releases.json.rabl
1084
1133
  - app/views/katello/api/v2/common/status.json.rabl
1085
1134
  - app/views/katello/api/v2/common/update.json.rabl
1135
+ - app/views/katello/api/v2/content_credentials/index.json.rabl
1136
+ - app/views/katello/api/v2/content_credentials/show.json.rabl
1086
1137
  - app/views/katello/api/v2/content_facet/base.json.rabl
1087
1138
  - app/views/katello/api/v2/content_facet/base_with_root.json.rabl
1088
1139
  - app/views/katello/api/v2/content_facet/erratum.json.rabl
@@ -1127,7 +1178,7 @@ files:
1127
1178
  - app/views/katello/api/v2/environments/show.json.rabl
1128
1179
  - app/views/katello/api/v2/errata/_attributes.json.rabl
1129
1180
  - app/views/katello/api/v2/errata/_counts.json.rabl
1130
- - app/views/katello/api/v2/errata/available_errata.rabl
1181
+ - app/views/katello/api/v2/errata/available_errata.json.rabl
1131
1182
  - app/views/katello/api/v2/errata/compare.json.rabl
1132
1183
  - app/views/katello/api/v2/errata/index.json.rabl
1133
1184
  - app/views/katello/api/v2/errata/show.json.rabl
@@ -1236,6 +1287,8 @@ files:
1236
1287
  - app/views/katello/api/v2/tasks/show.json.rabl
1237
1288
  - app/views/katello/api/v2/tasks/task_status_show.json.rabl
1238
1289
  - app/views/katello/api/v2/uebercerts/show.json.rabl
1290
+ - app/views/katello/api/v2/upstream_subscriptions/base.json.rabl
1291
+ - app/views/katello/api/v2/upstream_subscriptions/index.json.rabl
1239
1292
  - app/views/katello/errata_mailer/_erratum.html.erb
1240
1293
  - app/views/katello/errata_mailer/_host_dashboard.html.erb
1241
1294
  - app/views/katello/errata_mailer/host_errata.html.erb
@@ -1247,12 +1300,6 @@ files:
1247
1300
  - app/views/katello/layouts/foreman_with_bastion.html.erb
1248
1301
  - app/views/katello/layouts/katello.html.erb
1249
1302
  - app/views/katello/layouts/react.html.erb
1250
- - app/views/katello/providers/redhat/_enable_errors.html.erb
1251
- - app/views/katello/providers/redhat/_errors.html.erb
1252
- - app/views/katello/providers/redhat/_repo_sets.html.erb
1253
- - app/views/katello/providers/redhat/_repos.html.erb
1254
- - app/views/katello/providers/redhat/_tab.html.erb
1255
- - app/views/katello/providers/redhat/show.html.erb
1256
1303
  - app/views/katello/sync_management/_children.html.erb
1257
1304
  - app/views/katello/sync_management/_controls.html.erb
1258
1305
  - app/views/katello/sync_management/_product.html.erb
@@ -1483,21 +1530,37 @@ files:
1483
1530
  - db/migrate/20171011175510_add_srpm.rb
1484
1531
  - db/migrate/20171014051810_remove_docker_manifest_name.rb
1485
1532
  - db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb
1533
+ - db/migrate/20171110082124_add_ssl_certs_to_products_and_repos.rb
1486
1534
  - db/migrate/20171112174357_create_katello_content.rb
1487
1535
  - db/migrate/20171112174358_create_katello_product_content.rb
1488
1536
  - db/migrate/20171114150937_cleanup_installed_packages.rb
1489
1537
  - db/migrate/20171114183353_add_hypervisor_id_to_katello_pools.rb
1490
1538
  - db/migrate/20171120144843_add_repository_ignore_proxy.rb
1491
1539
  - db/migrate/20171211124439_add_uuid_index_to_katello_subscription_facets.rb
1540
+ - db/migrate/20171214050230_add_auto_publish_to_content_views.rb
1492
1541
  - db/migrate/20180103230812_set_errata_updated_date.rb
1542
+ - db/migrate/20180117202932_sub_facet_add_installed_products.rb
1543
+ - db/migrate/20180119152210_add_compliance_reasons.rb
1544
+ - db/migrate/20180207232901_add_triggered_by_to_content_view_history.rb
1545
+ - db/migrate/20180218191449_add_manifest_refreshed_at_to_organization.rb
1546
+ - db/migrate/20180227094827_use_uuid_for_task_id.rb
1547
+ - db/migrate/20180323175122_add_registry_name_pattern_to_environment.rb
1548
+ - db/migrate/20180326145716_subscription_cp_id_change.rb
1549
+ - db/migrate/20180326150339_move_stacking_id.rb
1550
+ - db/migrate/20180326190408_move_subscription_products.rb
1551
+ - db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb
1552
+ - db/migrate/20180410140909_add_organization_id_to_pool.rb
1553
+ - db/migrate/20180413153126_content_facet_applicable_rpms_index.rb
1554
+ - db/migrate/20180417031215_add_ignorable_content_to_repository.rb
1555
+ - db/migrate/20180521200848_drop_repo_rpms_timestamp_not_null.rb
1493
1556
  - db/seeds.d/101-locations.rb
1494
1557
  - db/seeds.d/102-organizations.rb
1495
- - db/seeds.d/103-provisioning_templates.rb
1496
1558
  - db/seeds.d/104-proxy.rb
1497
1559
  - db/seeds.d/106-mail_notifications.rb
1498
1560
  - db/seeds.d/107-enable_dynflow.rb
1499
1561
  - db/seeds.d/108-subcription-bookmarks.rb
1500
1562
  - db/seeds.d/109-katello-notification-blueprints.rb
1563
+ - db/seeds.d/110-content-view-autopublish.rb
1501
1564
  - db/seeds.d/75-job_templates.rb
1502
1565
  - engines/bastion_katello/README.md
1503
1566
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-key.factory.js
@@ -1544,6 +1607,22 @@ files:
1544
1607
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/registration.html
1545
1608
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/select-action-dropdown.html
1546
1609
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/subscription-add-or-remove.html
1610
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js
1611
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.controller.js
1612
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.module.js
1613
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js
1614
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-type.filter.js
1615
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details-info.controller.js
1616
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js
1617
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-products.controller.js
1618
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-repositories.controller.js
1619
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
1620
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
1621
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
1622
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
1623
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/new/new-content-credential.controller.js
1624
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/new/views/new-content-credential.html
1625
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
1547
1626
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-environment-modal.controller.js
1548
1627
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js
1549
1628
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-host-collections-modal.controller.js
@@ -1559,8 +1638,6 @@ files:
1559
1638
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
1560
1639
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
1561
1640
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
1562
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/errata-content-hosts.html
1563
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/errata-details.html
1564
1641
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-events.controller.js
1565
1642
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js
1566
1643
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-register.controller.js
@@ -1797,21 +1874,6 @@ files:
1797
1874
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/files/files.module.js
1798
1875
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/files/files.routes.js
1799
1876
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/files/views/files.html
1800
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-details-info.controller.js
1801
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-details.controller.js
1802
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-products.controller.js
1803
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/gpg-key-repositories.controller.js
1804
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-details.html
1805
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-info.html
1806
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-products.html
1807
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/details/views/gpg-key-repositories.html
1808
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-key.factory.js
1809
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-keys.controller.js
1810
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-keys.module.js
1811
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/gpg-keys.routes.js
1812
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/new/new-gpg-key.controller.js
1813
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/new/views/new-gpg-key.html
1814
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/gpg-keys/views/gpg-keys.html
1815
1877
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-add-hosts.controller.js
1816
1878
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-copy.controller.js
1817
1879
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js
@@ -1905,6 +1967,7 @@ files:
1905
1967
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html
1906
1968
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html
1907
1969
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
1970
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html
1908
1971
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-files.html
1909
1972
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-ostree-branches.html
1910
1973
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-package-groups.html
@@ -1917,8 +1980,10 @@ files:
1917
1980
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/ostree-upstream-sync-policy.service.js
1918
1981
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.module.js
1919
1982
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js
1983
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js
1920
1984
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js
1921
1985
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
1986
+ - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js
1922
1987
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-details.html
1923
1988
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-info.html
1924
1989
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/views/product-tasks.html
@@ -2061,6 +2126,7 @@ files:
2061
2126
  - lib/katello/tasks/import_applicability.rake
2062
2127
  - lib/katello/tasks/import_subscriptions.rake
2063
2128
  - lib/katello/tasks/jenkins.rake
2129
+ - lib/katello/tasks/job_templates.rake
2064
2130
  - lib/katello/tasks/regenerate_ueber_certs.rake
2065
2131
  - lib/katello/tasks/reimport.rake
2066
2132
  - lib/katello/tasks/repository.rake
@@ -2081,8 +2147,10 @@ files:
2081
2147
  - lib/katello/tasks/upgrades/3.3/hypervisors.rake
2082
2148
  - lib/katello/tasks/upgrades/3.4/reindex_docker_tags.rake
2083
2149
  - lib/katello/tasks/upgrades/3.4/remove_unused_products.rake
2150
+ - lib/katello/tasks/upgrades/3.6/import_backend_consumer_attributes.rake
2084
2151
  - lib/katello/tasks/upgrades/3.6/import_product_content.rake
2085
2152
  - lib/katello/tasks/upgrades/3.6/republish_file_repos.rake
2153
+ - lib/katello/tasks/upgrades/3.7/make_all_ks_repos_bootable.rake
2086
2154
  - lib/katello/tasks/virt_who_report.rake
2087
2155
  - lib/katello/url_constrained_cookie_store.rb
2088
2156
  - lib/katello/version.rb
@@ -2119,6 +2187,7 @@ files:
2119
2187
  - locale/zanata.xml
2120
2188
  - locale/zh_CN/katello.po
2121
2189
  - locale/zh_TW/katello.po
2190
+ - package.json
2122
2191
  - vendor/assets/images/katello/add2.png
2123
2192
  - vendor/assets/images/katello/addhost.png
2124
2193
  - vendor/assets/images/katello/addhost2.png
@@ -2176,6 +2245,141 @@ files:
2176
2245
  - vendor/assets/stylesheets/katello/jquery.multiselect.filter.css
2177
2246
  - vendor/assets/stylesheets/katello/jquery.treeTable.css.scss
2178
2247
  - vendor/assets/stylesheets/katello/ui.spinner.css.scss
2248
+ - webpack/__mocks__/foremanReact/common/helpers.js
2249
+ - webpack/__mocks__/foremanReact/components/common/table.js
2250
+ - webpack/__mocks__/react-bootstrap-tooltip-button.js
2251
+ - webpack/components/MultiSelect/index.js
2252
+ - webpack/components/PaginationRow/PaginationRow.test.js
2253
+ - webpack/components/PaginationRow/__snapshots__/PaginationRow.test.js.snap
2254
+ - webpack/components/PaginationRow/index.js
2255
+ - webpack/components/Search/Search.test.js
2256
+ - webpack/components/Search/__snapshots__/Search.test.js.snap
2257
+ - webpack/components/Search/helpers.js
2258
+ - webpack/components/Search/index.js
2259
+ - webpack/containers/Application/Routes.js
2260
+ - webpack/containers/Application/config.js
2261
+ - webpack/containers/Application/index.js
2262
+ - webpack/containers/Application/overrides.scss
2263
+ - webpack/index.js
2264
+ - webpack/mockRequest.js
2265
+ - webpack/move_to_foreman/Settings/SettingsActions.js
2266
+ - webpack/move_to_foreman/Settings/SettingsConstants.js
2267
+ - webpack/move_to_foreman/Settings/__tests__/SettingsActions.test.js
2268
+ - webpack/move_to_foreman/Settings/__tests__/settings.fixtures.js
2269
+ - webpack/move_to_foreman/__mocks__/foreman_toast_notifications.js
2270
+ - webpack/move_to_foreman/common/helpers.js
2271
+ - webpack/move_to_foreman/components/common/ConfirmDialog/ConfirmDialog.js
2272
+ - webpack/move_to_foreman/components/common/ConfirmDialog/__tests__/ConfirmDialog.test.js
2273
+ - webpack/move_to_foreman/components/common/ConfirmDialog/__tests__/__snapshots__/ConfirmDialog.test.js.snap
2274
+ - webpack/move_to_foreman/components/common/ConfirmDialog/index.js
2275
+ - webpack/move_to_foreman/components/common/Dialog/Dialog.js
2276
+ - webpack/move_to_foreman/components/common/Dialog/__tests__/Dialog.test.js
2277
+ - webpack/move_to_foreman/components/common/Dialog/__tests__/__snapshots__/Dialog.test.js.snap
2278
+ - webpack/move_to_foreman/components/common/Dialog/index.js
2279
+ - webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.js
2280
+ - webpack/move_to_foreman/components/common/ModalProgressBar/ModalProgressBar.scss
2281
+ - webpack/move_to_foreman/components/common/ModalProgressBar/__tests__/ModalProgressBar.test.js
2282
+ - webpack/move_to_foreman/components/common/ModalProgressBar/__tests__/__snapshots__/ModalProgressBar.test.js.snap
2283
+ - webpack/move_to_foreman/components/common/ModalProgressBar/index.js
2284
+ - webpack/move_to_foreman/components/common/emptyState/index.js
2285
+ - webpack/move_to_foreman/components/common/table/index.js
2286
+ - webpack/move_to_foreman/foreman_toast_notifications.js
2287
+ - webpack/move_to_pf/TypeAhead/TypeAhead.js
2288
+ - webpack/move_to_pf/TypeAhead/TypeAhead.scss
2289
+ - webpack/move_to_pf/TypeAhead/TypeAheadInput.js
2290
+ - webpack/move_to_pf/TypeAhead/TypeAheadItems.js
2291
+ - webpack/move_to_pf/TypeAhead/helpers.js
2292
+ - webpack/move_to_pf/react-bootstrap-select/index.js
2293
+ - webpack/redux/actions/RedHatRepositories/enabled.js
2294
+ - webpack/redux/actions/RedHatRepositories/helpers.js
2295
+ - webpack/redux/actions/RedHatRepositories/repositorySetRepositories.js
2296
+ - webpack/redux/actions/RedHatRepositories/sets.js
2297
+ - webpack/redux/consts.js
2298
+ - webpack/redux/index.js
2299
+ - webpack/redux/reducers/RedHatRepositories/enabled.fixtures.js
2300
+ - webpack/redux/reducers/RedHatRepositories/enabled.js
2301
+ - webpack/redux/reducers/RedHatRepositories/enabled.test.js
2302
+ - webpack/redux/reducers/RedHatRepositories/filters.fixtures.js
2303
+ - webpack/redux/reducers/RedHatRepositories/index.js
2304
+ - webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.fixtures.js
2305
+ - webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.js
2306
+ - webpack/redux/reducers/RedHatRepositories/repositorySetRepositories.test.js
2307
+ - webpack/redux/reducers/RedHatRepositories/sets.fixtures.js
2308
+ - webpack/redux/reducers/RedHatRepositories/sets.js
2309
+ - webpack/redux/reducers/RedHatRepositories/sets.test.js
2310
+ - webpack/redux/reducers/index.js
2311
+ - webpack/scenes/Organizations/OrganizationActions.js
2312
+ - webpack/scenes/Organizations/OrganizationConstants.js
2313
+ - webpack/scenes/Organizations/OrganizationReducer.js
2314
+ - webpack/scenes/Organizations/__tests__/OrganizationActions.test.js
2315
+ - webpack/scenes/Organizations/__tests__/OrganizationReducer.test.js
2316
+ - webpack/scenes/Organizations/__tests__/organizations.fixtures.js
2317
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository.js
2318
+ - webpack/scenes/RedHatRepositories/components/EnabledRepository.stories.js
2319
+ - webpack/scenes/RedHatRepositories/components/RepositorySet.js
2320
+ - webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js
2321
+ - webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js
2322
+ - webpack/scenes/RedHatRepositories/components/RepositoryTypeIcon.js
2323
+ - webpack/scenes/RedHatRepositories/components/Search.js
2324
+ - webpack/scenes/RedHatRepositories/components/SearchBar.js
2325
+ - webpack/scenes/RedHatRepositories/components/__tests__/RepositoryTypeIcon.test.js
2326
+ - webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositoryTypeIcon.test.js.snap
2327
+ - webpack/scenes/RedHatRepositories/helpers.js
2328
+ - webpack/scenes/RedHatRepositories/index.js
2329
+ - webpack/scenes/RedHatRepositories/index.scss
2330
+ - webpack/scenes/Subscriptions/EntitlementsInlineEditFormatter.js
2331
+ - webpack/scenes/Subscriptions/Manifest/DeleteManifestModalText.js
2332
+ - webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js
2333
+ - webpack/scenes/Subscriptions/Manifest/Manifest.scss
2334
+ - webpack/scenes/Subscriptions/Manifest/ManifestActions.js
2335
+ - webpack/scenes/Subscriptions/Manifest/ManifestConstants.js
2336
+ - webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js
2337
+ - webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js
2338
+ - webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js
2339
+ - webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js
2340
+ - webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js
2341
+ - webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap
2342
+ - webpack/scenes/Subscriptions/Manifest/__tests__/manifest.fixtures.js
2343
+ - webpack/scenes/Subscriptions/Manifest/index.js
2344
+ - webpack/scenes/Subscriptions/SubscriptionActions.js
2345
+ - webpack/scenes/Subscriptions/SubscriptionConstants.js
2346
+ - webpack/scenes/Subscriptions/SubscriptionHelpers.js
2347
+ - webpack/scenes/Subscriptions/SubscriptionReducer.js
2348
+ - webpack/scenes/Subscriptions/SubscriptionValidations.js
2349
+ - webpack/scenes/Subscriptions/Subscriptions.scss
2350
+ - webpack/scenes/Subscriptions/SubscriptionsPage.js
2351
+ - webpack/scenes/Subscriptions/SubscriptionsTable.js
2352
+ - webpack/scenes/Subscriptions/SubscriptionsTableSchema.js
2353
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js
2354
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsContstants.js
2355
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js
2356
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js
2357
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js
2358
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsActions.test.js
2359
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js
2360
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsReducer.test.js
2361
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap
2362
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/upstreamSubscriptions.fixtures.js
2363
+ - webpack/scenes/Subscriptions/UpstreamSubscriptions/index.js
2364
+ - webpack/scenes/Subscriptions/__tests__/SubscriptionValidations.test.js
2365
+ - webpack/scenes/Subscriptions/__tests__/SubscriptionsActions.test.js
2366
+ - webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js
2367
+ - webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js
2368
+ - webpack/scenes/Subscriptions/__tests__/SubscriptionsTable.test.js
2369
+ - webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap
2370
+ - webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsTable.test.js.snap
2371
+ - webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js
2372
+ - webpack/scenes/Subscriptions/index.js
2373
+ - webpack/scenes/Tasks/TaskActions.js
2374
+ - webpack/scenes/Tasks/TaskConstants.js
2375
+ - webpack/scenes/Tasks/__tests__/TaskActions.test.js
2376
+ - webpack/scenes/Tasks/__tests__/task.fixtures.js
2377
+ - webpack/services/api/fixtures.js
2378
+ - webpack/services/api/index.js
2379
+ - webpack/services/api/setupMocks.js
2380
+ - webpack/services/index.js
2381
+ - webpack/stories/index.js
2382
+ - webpack/test_setup.js
2179
2383
  homepage: http://www.katello.org
2180
2384
  licenses: []
2181
2385
  metadata: {}
@@ -2195,7 +2399,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2195
2399
  version: 1.3.1
2196
2400
  requirements: []
2197
2401
  rubyforge_project:
2198
- rubygems_version: 2.4.6
2402
+ rubygems_version: 2.6.14.1
2199
2403
  signing_key:
2200
2404
  specification_version: 4
2201
2405
  summary: ''