foreman-tasks 1.1.0 → 1.1.1

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 (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/foreman_tasks/api/tasks_controller.rb +12 -5
  3. data/app/lib/foreman_tasks/concerns/polling_action_extensions.rb +12 -0
  4. data/app/models/setting/foreman_tasks.rb +6 -1
  5. data/app/services/ui_notifications/tasks/task_bulk_cancel.rb +36 -0
  6. data/app/services/ui_notifications/tasks/task_bulk_resume.rb +38 -0
  7. data/db/seeds.d/30-notification_blueprints.rb +14 -0
  8. data/foreman-tasks.gemspec +1 -0
  9. data/gemfile.d/foreman-tasks.rb +1 -0
  10. data/lib/foreman_tasks/engine.rb +1 -0
  11. data/lib/foreman_tasks/version.rb +1 -1
  12. data/script/travis_run_js_tests.sh +2 -2
  13. data/test/lib/concerns/polling_action_extensions_test.rb +34 -0
  14. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/TaskInfo.test.js.snap +1 -3
  15. data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js +5 -0
  16. data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardHelper.js +3 -2
  17. data/webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js +43 -0
  18. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/SelectAllAlert.test.js +29 -0
  19. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/SelectAllAlert.test.js.snap +75 -0
  20. data/webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js +2 -1
  21. data/webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js +164 -0
  22. data/webpack/ForemanTasks/Components/TasksTable/TasksTable.js +24 -10
  23. data/webpack/ForemanTasks/Components/TasksTable/TasksTableActionHelpers.js +52 -0
  24. data/webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js +66 -128
  25. data/webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js +11 -1
  26. data/webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js +4 -3
  27. data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js +64 -12
  28. data/webpack/ForemanTasks/Components/TasksTable/TasksTableReducer.js +21 -2
  29. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js +6 -0
  30. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js +112 -0
  31. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js +5 -3
  32. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActionHelpers.test.js +46 -0
  33. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js +19 -41
  34. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableHelpers.test.js +17 -1
  35. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js +9 -1
  36. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableReducer.test.js +22 -1
  37. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap +5 -3
  38. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap +229 -0
  39. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap +5 -3
  40. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap +39 -124
  41. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap +40 -16
  42. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableReducer.test.js.snap +34 -0
  43. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionHeaderCellFormatter.test.js +1 -1
  44. data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionHeaderCellFormatter.js +2 -2
  45. data/webpack/ForemanTasks/Components/TasksTable/index.js +8 -2
  46. data/webpack/ForemanTasks/Components/common/ToastTypesConstants.js +11 -0
  47. metadata +31 -2
@@ -45,7 +45,8 @@ exports[`TasksTablePage rendering render with Breadcrubs 1`] = `
45
45
  history={
46
46
  Object {
47
47
  "location": Object {
48
- "search": "",
48
+ "pathname": "/foreman_tasks/tasks",
49
+ "search": "?action=\\"some-name\\"",
49
50
  },
50
51
  }
51
52
  }
@@ -84,7 +85,7 @@ exports[`TasksTablePage rendering render with Breadcrubs 1`] = `
84
85
  "documentationUrl": "4.1.5Searching",
85
86
  "url": "/api/bookmarks",
86
87
  },
87
- "controller": "tasks",
88
+ "controller": "foreman_tasks/tasks",
88
89
  }
89
90
  }
90
91
  searchQuery="a=b"
@@ -92,9 +93,16 @@ exports[`TasksTablePage rendering render with Breadcrubs 1`] = `
92
93
  toastNotifications="foreman-tasks-cancel"
93
94
  toolbarButtons={
94
95
  <React.Fragment>
96
+ <Spinner
97
+ className=""
98
+ inline={false}
99
+ inverse={false}
100
+ loading={true}
101
+ size="lg"
102
+ />
95
103
  <ExportButton
96
104
  title="Export All"
97
- url="/foreman_tasks/tasks.csv?include_permissions=true"
105
+ url="/foreman_tasks/tasks.csv?action=%22some-name%22&state=stopped"
98
106
  />
99
107
  <ActionSelectButton
100
108
  disabled={true}
@@ -106,15 +114,19 @@ exports[`TasksTablePage rendering render with Breadcrubs 1`] = `
106
114
  >
107
115
  <TasksTable
108
116
  actionName=""
109
- bulkCancel={[MockFunction]}
110
- bulkResume={[MockFunction]}
117
+ allRowsSelected={false}
118
+ bulkCancelById={[MockFunction]}
119
+ bulkCancelBySearch={[MockFunction]}
120
+ bulkResumeById={[MockFunction]}
121
+ bulkResumeBySearch={[MockFunction]}
111
122
  cancelTask={[MockFunction]}
112
123
  error={null}
113
124
  getTableItems={[MockFunction]}
114
125
  history={
115
126
  Object {
116
127
  "location": Object {
117
- "search": "",
128
+ "pathname": "/foreman_tasks/tasks",
129
+ "search": "?action=\\"some-name\\"",
118
130
  },
119
131
  }
120
132
  }
@@ -158,7 +170,7 @@ exports[`TasksTablePage rendering render with Breadcrubs 1`] = `
158
170
  ]
159
171
  }
160
172
  resumeTask={[MockFunction]}
161
- selectAllRows={[MockFunction]}
173
+ selectPage={[MockFunction]}
162
174
  selectRow={[MockFunction]}
163
175
  selectedRows={Array []}
164
176
  sort={
@@ -167,7 +179,7 @@ exports[`TasksTablePage rendering render with Breadcrubs 1`] = `
167
179
  "order": "w",
168
180
  }
169
181
  }
170
- status="RESOLVED"
182
+ status="PENDING"
171
183
  unselectAllRows={[MockFunction]}
172
184
  unselectRow={[MockFunction]}
173
185
  />
@@ -220,7 +232,8 @@ exports[`TasksTablePage rendering render with minimal props 1`] = `
220
232
  history={
221
233
  Object {
222
234
  "location": Object {
223
- "search": "",
235
+ "pathname": "/foreman_tasks/tasks",
236
+ "search": "?action=\\"some-name\\"",
224
237
  },
225
238
  }
226
239
  }
@@ -242,7 +255,7 @@ exports[`TasksTablePage rendering render with minimal props 1`] = `
242
255
  "documentationUrl": "4.1.5Searching",
243
256
  "url": "/api/bookmarks",
244
257
  },
245
- "controller": "tasks",
258
+ "controller": "foreman_tasks/tasks",
246
259
  }
247
260
  }
248
261
  searchQuery="a=b"
@@ -250,9 +263,16 @@ exports[`TasksTablePage rendering render with minimal props 1`] = `
250
263
  toastNotifications="foreman-tasks-cancel"
251
264
  toolbarButtons={
252
265
  <React.Fragment>
266
+ <Spinner
267
+ className=""
268
+ inline={false}
269
+ inverse={false}
270
+ loading={true}
271
+ size="lg"
272
+ />
253
273
  <ExportButton
254
274
  title="Export All"
255
- url="/foreman_tasks/tasks.csv?include_permissions=true"
275
+ url="/foreman_tasks/tasks.csv?action=%22some-name%22&state=stopped"
256
276
  />
257
277
  <ActionSelectButton
258
278
  disabled={true}
@@ -264,15 +284,19 @@ exports[`TasksTablePage rendering render with minimal props 1`] = `
264
284
  >
265
285
  <TasksTable
266
286
  actionName=""
267
- bulkCancel={[MockFunction]}
268
- bulkResume={[MockFunction]}
287
+ allRowsSelected={false}
288
+ bulkCancelById={[MockFunction]}
289
+ bulkCancelBySearch={[MockFunction]}
290
+ bulkResumeById={[MockFunction]}
291
+ bulkResumeBySearch={[MockFunction]}
269
292
  cancelTask={[MockFunction]}
270
293
  error={null}
271
294
  getTableItems={[MockFunction]}
272
295
  history={
273
296
  Object {
274
297
  "location": Object {
275
- "search": "",
298
+ "pathname": "/foreman_tasks/tasks",
299
+ "search": "?action=\\"some-name\\"",
276
300
  },
277
301
  }
278
302
  }
@@ -316,7 +340,7 @@ exports[`TasksTablePage rendering render with minimal props 1`] = `
316
340
  ]
317
341
  }
318
342
  resumeTask={[MockFunction]}
319
- selectAllRows={[MockFunction]}
343
+ selectPage={[MockFunction]}
320
344
  selectRow={[MockFunction]}
321
345
  selectedRows={Array []}
322
346
  sort={
@@ -325,7 +349,7 @@ exports[`TasksTablePage rendering render with minimal props 1`] = `
325
349
  "order": "w",
326
350
  }
327
351
  }
328
- status="RESOLVED"
352
+ status="PENDING"
329
353
  unselectAllRows={[MockFunction]}
330
354
  unselectRow={[MockFunction]}
331
355
  />
@@ -1,5 +1,23 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
+ exports[`TasksTableReducer reducer should handle OPEN_SELECT_ALL 1`] = `
4
+ Object {
5
+ "tasksTableQuery": Object {
6
+ "selectedRows": Array [],
7
+ "showSelectAll": true,
8
+ },
9
+ }
10
+ `;
11
+
12
+ exports[`TasksTableReducer reducer should handle SELECT_ALL_ROWS 1`] = `
13
+ Object {
14
+ "tasksTableQuery": Object {
15
+ "allRowsSelected": true,
16
+ "selectedRows": Array [],
17
+ },
18
+ }
19
+ `;
20
+
3
21
  exports[`TasksTableReducer reducer should handle SELECT_ROWS 1`] = `
4
22
  Object {
5
23
  "tasksTableQuery": Object {
@@ -49,7 +67,9 @@ Object {
49
67
  exports[`TasksTableReducer reducer should handle UNSELECT_ALL_ROWS 1`] = `
50
68
  Object {
51
69
  "tasksTableQuery": Object {
70
+ "allRowsSelected": false,
52
71
  "selectedRows": Array [],
72
+ "showSelectAll": false,
53
73
  },
54
74
  }
55
75
  `;
@@ -62,6 +82,20 @@ Object {
62
82
  }
63
83
  `;
64
84
 
85
+ exports[`TasksTableReducer reducer should handle UNSELECT_ROWS with all rows selected 1`] = `
86
+ Object {
87
+ "tasksTableQuery": Object {
88
+ "allRowsSelected": false,
89
+ "selectedRows": Array [
90
+ 3,
91
+ 4,
92
+ 5,
93
+ ],
94
+ "showSelectAll": false,
95
+ },
96
+ }
97
+ `;
98
+
65
99
  exports[`TasksTableReducer reducer should handle UPDATE_CLICKED 1`] = `
66
100
  Object {
67
101
  "tasksTableQuery": Object {
@@ -4,7 +4,7 @@ describe('selectionHeaderCellFormatter', () => {
4
4
  it('render', () => {
5
5
  expect(
6
6
  selectionHeaderCellFormatter(
7
- { allRowsSelected: () => true },
7
+ { allPageSelected: () => true },
8
8
  'some-label'
9
9
  )
10
10
  ).toMatchSnapshot();
@@ -4,7 +4,7 @@ import TableSelectionHeaderCell from '../Components/TableSelectionHeaderCell';
4
4
  export default (selectionController, label) => (
5
5
  <TableSelectionHeaderCell
6
6
  label={label}
7
- checked={selectionController.allRowsSelected()}
8
- onChange={() => selectionController.selectAllRows()}
7
+ checked={selectionController.allPageSelected()}
8
+ onChange={selectionController.selectPage}
9
9
  />
10
10
  );
@@ -2,7 +2,8 @@ import { connect } from 'react-redux';
2
2
  import { bindActionCreators } from 'redux';
3
3
  import TasksTablePage from './TasksTablePage';
4
4
  import reducer from './TasksTableReducer';
5
- import * as actions from './TasksTableActions';
5
+ import * as tableActions from './TasksTableActions';
6
+ import * as bulkActions from './TasksBulkActions';
6
7
  import {
7
8
  selectStatus,
8
9
  selectError,
@@ -13,6 +14,8 @@ import {
13
14
  selectActionName,
14
15
  selectSelectedRows,
15
16
  selectClicked,
17
+ selectAllRowsSelected,
18
+ selectShowSelectAll,
16
19
  } from './TasksTableSelectors';
17
20
 
18
21
  const mapStateToProps = state => ({
@@ -25,9 +28,12 @@ const mapStateToProps = state => ({
25
28
  actionName: selectActionName(state),
26
29
  selectedRows: selectSelectedRows(state),
27
30
  clicked: selectClicked(state),
31
+ allRowsSelected: selectAllRowsSelected(state),
32
+ showSelectAll: selectShowSelectAll(state),
28
33
  });
29
34
 
30
- const mapDispatchToProps = dispatch => bindActionCreators(actions, dispatch);
35
+ const mapDispatchToProps = dispatch =>
36
+ bindActionCreators({ ...tableActions, ...bulkActions }, dispatch);
31
37
 
32
38
  export const reducers = { tasksTable: reducer };
33
39
 
@@ -0,0 +1,11 @@
1
+ export const INFO = 'info';
2
+ export const SUCCESS = 'success';
3
+ export const ERROR = 'error';
4
+ export const WARNING = 'warning';
5
+
6
+ export const TOAST_TYPES = {
7
+ INFO,
8
+ SUCCESS,
9
+ ERROR,
10
+ WARNING,
11
+ };
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman-tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Nečas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-17 00:00:00.000000000 Z
11
+ date: 2020-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dynflow
@@ -94,6 +94,20 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: 4.8.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: sqlite3
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
97
111
  description: |
98
112
  The goal of this plugin is to unify the way of showing task statuses across the Foreman instance.
99
113
  It defines Task model for keeping the information about the tasks and Lock for assigning the tasks
@@ -159,6 +173,7 @@ files:
159
173
  - app/lib/actions/proxy_action.rb
160
174
  - app/lib/actions/recurring_action.rb
161
175
  - app/lib/actions/serializers/active_record_serializer.rb
176
+ - app/lib/foreman_tasks/concerns/polling_action_extensions.rb
162
177
  - app/lib/proxy_api/foreman_dynflow/dynflow_proxy.rb
163
178
  - app/models/foreman_tasks/concerns/action_subject.rb
164
179
  - app/models/foreman_tasks/concerns/action_triggering.rb
@@ -183,6 +198,8 @@ files:
183
198
  - app/services/foreman_tasks/proxy_selector.rb
184
199
  - app/services/foreman_tasks/troubleshooting_help_generator.rb
185
200
  - app/services/ui_notifications/tasks.rb
201
+ - app/services/ui_notifications/tasks/task_bulk_cancel.rb
202
+ - app/services/ui_notifications/tasks/task_bulk_resume.rb
186
203
  - app/services/ui_notifications/tasks/task_paused_admin.rb
187
204
  - app/services/ui_notifications/tasks/task_paused_owner.rb
188
205
  - app/views/common/_trigger_form.html.erb
@@ -237,6 +254,7 @@ files:
237
254
  - extra/dynflow-debug.sh
238
255
  - extra/dynflow-executor.example
239
256
  - foreman-tasks.gemspec
257
+ - gemfile.d/foreman-tasks.rb
240
258
  - lib/foreman-tasks.rb
241
259
  - lib/foreman_tasks.rb
242
260
  - lib/foreman_tasks/authorizer_ext.rb
@@ -281,6 +299,7 @@ files:
281
299
  - test/lib/actions/middleware/keep_current_taxonomies_test.rb
282
300
  - test/lib/actions/middleware/keep_current_timezone_test.rb
283
301
  - test/lib/actions/middleware/keep_current_user_test.rb
302
+ - test/lib/concerns/polling_action_extensions_test.rb
284
303
  - test/support/dummy_active_job.rb
285
304
  - test/support/dummy_dynflow_action.rb
286
305
  - test/support/dummy_proxy_action.rb
@@ -420,23 +439,28 @@ files:
420
439
  - webpack/ForemanTasks/Components/TasksTable/Components/CancelConfirm.js
421
440
  - webpack/ForemanTasks/Components/TasksTable/Components/ConfirmationModals.js
422
441
  - webpack/ForemanTasks/Components/TasksTable/Components/ResumeConfirm.js
442
+ - webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js
423
443
  - webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionCell.js
424
444
  - webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionHeaderCell.js
425
445
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/ActionSelectButton.test.js
426
446
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/CancelConfirm.test.js
427
447
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/ConfirmationModals.test.js
428
448
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/ResumeConfirm.test.js
449
+ - webpack/ForemanTasks/Components/TasksTable/Components/__test__/SelectAllAlert.test.js
429
450
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionCell.test.js
430
451
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionHeaderCell.test.js
431
452
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ActionSelectButton.test.js.snap
432
453
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/CancelConfirm.test.js.snap
433
454
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ConfirmationModals.test.js.snap
434
455
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ResumeConfirm.test.js.snap
456
+ - webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/SelectAllAlert.test.js.snap
435
457
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionCell.test.js.snap
436
458
  - webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionHeaderCell.test.js.snap
437
459
  - webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js
460
+ - webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js
438
461
  - webpack/ForemanTasks/Components/TasksTable/TasksIndexPage.js
439
462
  - webpack/ForemanTasks/Components/TasksTable/TasksTable.js
463
+ - webpack/ForemanTasks/Components/TasksTable/TasksTableActionHelpers.js
440
464
  - webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js
441
465
  - webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js
442
466
  - webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js
@@ -446,14 +470,17 @@ files:
446
470
  - webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js
447
471
  - webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js
448
472
  - webpack/ForemanTasks/Components/TasksTable/__tests__/SubTasksPage.test.js
473
+ - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js
449
474
  - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksIndexPage.test.js
450
475
  - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js
451
476
  - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.test.js
477
+ - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActionHelpers.test.js
452
478
  - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js
453
479
  - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableHelpers.test.js
454
480
  - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js
455
481
  - webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableReducer.test.js
456
482
  - webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap
483
+ - webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap
457
484
  - webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap
458
485
  - webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTable.test.js.snap
459
486
  - webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap
@@ -489,6 +516,7 @@ files:
489
516
  - webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/CancelButton.test.js.snap
490
517
  - webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ResumeButton.test.js.snap
491
518
  - webpack/ForemanTasks/Components/common/ClickConfirmation/index.js
519
+ - webpack/ForemanTasks/Components/common/ToastTypesConstants.js
492
520
  - webpack/ForemanTasks/ForemanTasks.js
493
521
  - webpack/ForemanTasks/ForemanTasks.test.js
494
522
  - webpack/ForemanTasks/ForemanTasksReducers.js
@@ -568,6 +596,7 @@ test_files:
568
596
  - test/lib/actions/middleware/keep_current_taxonomies_test.rb
569
597
  - test/lib/actions/middleware/keep_current_timezone_test.rb
570
598
  - test/lib/actions/middleware/keep_current_user_test.rb
599
+ - test/lib/concerns/polling_action_extensions_test.rb
571
600
  - test/support/dummy_active_job.rb
572
601
  - test/support/dummy_dynflow_action.rb
573
602
  - test/support/dummy_proxy_action.rb