foreman_patch 1.2.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/lib/foreman_patch/version.rb +1 -1
  3. data/public/assets/foreman_patch/cycle_plans-ff3d252119622a68828ff70f4a97328303963002237dbf850e92d6a706e93667.scss.gz +0 -0
  4. data/public/assets/foreman_patch/foreman_patch-be2e2ba89548f4a490612e8a6cd1cdebc0473be89f8023a3df7612f05a75d301.css.gz +0 -0
  5. data/public/assets/foreman_patch/foreman_patch.json +1 -1
  6. data/public/assets/foreman_patch/plan_edit_windows-9ba20f84f3ecf2c4eb903acd57d30ee3e16f023a79db30bc614aa22f26442ce3.js.gz +0 -0
  7. data/public/webpack/foreman_patch/bundle-690cb91bc10a8152ce5d.css +1 -0
  8. data/public/webpack/foreman_patch/bundle-690cb91bc10a8152ce5d.css.gz +0 -0
  9. data/public/webpack/foreman_patch/bundle-690cb91bc10a8152ce5d.js +6 -0
  10. data/public/webpack/foreman_patch/bundle-690cb91bc10a8152ce5d.js.gz +0 -0
  11. data/public/webpack/foreman_patch/bundle-690cb91bc10a8152ce5d.js.map +1 -0
  12. data/public/webpack/foreman_patch/bundle-690cb91bc10a8152ce5d.js.map.gz +0 -0
  13. data/public/webpack/foreman_patch/foreman_patch-749c9e1af994b7380845.css +1 -0
  14. data/public/webpack/foreman_patch/foreman_patch-749c9e1af994b7380845.css.gz +0 -0
  15. data/public/webpack/foreman_patch/foreman_patch-749c9e1af994b7380845.js +6 -0
  16. data/public/webpack/foreman_patch/foreman_patch-749c9e1af994b7380845.js.gz +0 -0
  17. data/public/webpack/foreman_patch/foreman_patch-749c9e1af994b7380845.js.map +1 -0
  18. data/public/webpack/foreman_patch/foreman_patch-749c9e1af994b7380845.js.map.gz +0 -0
  19. data/public/webpack/foreman_patch/manifest.json +10 -10
  20. data/public/webpack/foreman_patch/manifest.json.gz +0 -0
  21. data/public/webpack/foreman_patch/vendor-4b77c91f1e9103179596.js.map +1 -1
  22. data/public/webpack/foreman_patch/vendor-4b77c91f1e9103179596.js.map.gz +0 -0
  23. data/webpack/components/Invocations/InvocationsPage.js +13 -7
  24. data/webpack/components/Invocations/InvocationsSelectors.js +6 -0
  25. data/webpack/components/Invocations/index.js +17 -20
  26. metadata +16 -59
  27. data/public/webpack/foreman_patch/bundle-e45c4bb530e40506f2da.css +0 -1
  28. data/public/webpack/foreman_patch/bundle-e45c4bb530e40506f2da.css.gz +0 -0
  29. data/public/webpack/foreman_patch/bundle-e45c4bb530e40506f2da.js +0 -6
  30. data/public/webpack/foreman_patch/bundle-e45c4bb530e40506f2da.js.gz +0 -0
  31. data/public/webpack/foreman_patch/bundle-e45c4bb530e40506f2da.js.map +0 -1
  32. data/public/webpack/foreman_patch/bundle-e45c4bb530e40506f2da.js.map.gz +0 -0
  33. data/public/webpack/foreman_patch/foreman_patch-4a4e1a59d74af09c4b8b.css +0 -1
  34. data/public/webpack/foreman_patch/foreman_patch-4a4e1a59d74af09c4b8b.css.gz +0 -0
  35. data/public/webpack/foreman_patch/foreman_patch-4a4e1a59d74af09c4b8b.js +0 -6
  36. data/public/webpack/foreman_patch/foreman_patch-4a4e1a59d74af09c4b8b.js.gz +0 -0
  37. data/public/webpack/foreman_patch/foreman_patch-4a4e1a59d74af09c4b8b.js.map +0 -1
  38. data/public/webpack/foreman_patch/foreman_patch-4a4e1a59d74af09c4b8b.js.map.gz +0 -0
  39. data/webpack/components/Invocations/InvocationsHelpers.js +0 -11
@@ -1,11 +0,0 @@
1
- import { getURI } from 'foremanReact/common/urlHelpers';
2
-
3
- export const getUrl = (round, searchQuery, pagination) => {
4
- const baseUrl = getURI()
5
- .path(`/foreman_patch/api/rounds/${round}/invocations`)
6
- .search('')
7
- .addQuery('page', pagination.page)
8
- .addQuery('per_page', pagination.perPage);
9
-
10
- return searchQuery ? baseUrl.addQuery('search', searchQuery) : baseUrl;
11
- };