├── .eslintrc ├── .github └── workflows │ ├── js_tests.yml │ ├── release.yml │ ├── ruby_tests.yml │ └── test-breaking.yaml ├── .gitignore ├── .packit.yaml ├── .prettierrc ├── .rubocop.yml ├── .rubocop_todo.yml ├── .stylelintrc ├── .tx └── config ├── Gemfile ├── LICENSE ├── README.md ├── app ├── assets │ ├── javascripts │ │ ├── foreman-tasks │ │ │ └── locale │ │ │ │ ├── de │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── en │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── es │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── fr │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── ja │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── ka │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── ko │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── pt_BR │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── ru │ │ │ │ └── foreman_tasks.js │ │ │ │ ├── zh_CN │ │ │ │ └── foreman_tasks.js │ │ │ │ └── zh_TW │ │ │ │ └── foreman_tasks.js │ │ └── foreman_tasks │ │ │ ├── foreman_tasks.js │ │ │ └── trigger_form.js │ └── stylesheets │ │ └── foreman_tasks │ │ ├── foreman_tasks.css │ │ └── trigger_form.css ├── controllers │ ├── concerns │ │ └── foreman_tasks │ │ │ └── find_tasks_common.rb │ └── foreman_tasks │ │ ├── api │ │ ├── recurring_logics_controller.rb │ │ └── tasks_controller.rb │ │ ├── concerns │ │ ├── hosts_controller_extension.rb │ │ └── parameters │ │ │ ├── recurring_logic.rb │ │ │ └── triggering.rb │ │ ├── react_controller.rb │ │ ├── recurring_logics_controller.rb │ │ └── tasks_controller.rb ├── graphql │ ├── mutations │ │ └── recurring_logics │ │ │ └── cancel.rb │ └── types │ │ ├── recurring_logic.rb │ │ ├── task.rb │ │ └── triggering.rb ├── helpers │ └── foreman_tasks │ │ ├── foreman_tasks_helper.rb │ │ └── tasks_helper.rb ├── lib │ ├── actions │ │ ├── action_with_sub_plans.rb │ │ ├── base.rb │ │ ├── bulk_action.rb │ │ ├── check_long_running_tasks.rb │ │ ├── deliver_long_running_tasks_notification.rb │ │ ├── entry_action.rb │ │ ├── foreman │ │ │ ├── host │ │ │ │ └── import_facts.rb │ │ │ └── puppetclass │ │ │ │ └── import.rb │ │ ├── helpers │ │ │ ├── args_serialization.rb │ │ │ ├── humanizer.rb │ │ │ ├── lifecycle_logging.rb │ │ │ ├── lock.rb │ │ │ ├── with_continuous_output.rb │ │ │ └── with_delegated_action.rb │ │ ├── middleware │ │ │ ├── hide_secrets.rb │ │ │ ├── inherit_task_groups.rb │ │ │ ├── keep_current_request_id.rb │ │ │ ├── keep_current_taxonomies.rb │ │ │ ├── keep_current_timezone.rb │ │ │ ├── keep_current_user.rb │ │ │ ├── load_setting_values.rb │ │ │ ├── proxy_batch_triggering.rb │ │ │ ├── rails_executor_wrap.rb │ │ │ ├── recurring_logic.rb │ │ │ └── watch_delegated_proxy_sub_tasks.rb │ │ ├── observable_action.rb │ │ ├── proxy_action.rb │ │ ├── recurring_action.rb │ │ ├── serializers │ │ │ └── active_record_serializer.rb │ │ ├── task_synchronization.rb │ │ └── trigger_proxy_batch.rb │ ├── foreman_tasks │ │ └── concerns │ │ │ └── polling_action_extensions.rb │ └── proxy_api │ │ └── foreman_dynflow │ │ └── dynflow_proxy.rb ├── mailers │ └── tasks_mailer.rb ├── models │ └── foreman_tasks │ │ ├── concerns │ │ ├── action_subject.rb │ │ ├── action_triggering.rb │ │ ├── host_action_subject.rb │ │ └── user_extensions.rb │ │ ├── link.rb │ │ ├── lock.rb │ │ ├── recurring_logic.rb │ │ ├── recurring_logic_cancelled_exception.rb │ │ ├── remote_task.rb │ │ ├── task.rb │ │ ├── task │ │ ├── dynflow_task.rb │ │ ├── search.rb │ │ ├── status_explicator.rb │ │ ├── summarizer.rb │ │ └── task_cancelled_exception.rb │ │ ├── task_group.rb │ │ ├── task_group_member.rb │ │ ├── task_groups │ │ └── recurring_logic_task_group.rb │ │ ├── tasks_mail_notification.rb │ │ └── triggering.rb ├── services │ ├── foreman_tasks │ │ ├── proxy_selector.rb │ │ └── troubleshooting_help_generator.rb │ └── ui_notifications │ │ ├── tasks.rb │ │ └── tasks │ │ ├── task_bulk_cancel.rb │ │ ├── task_bulk_resume.rb │ │ ├── task_bulk_stop.rb │ │ ├── task_paused_admin.rb │ │ ├── task_paused_owner.rb │ │ └── tasks_running_long.rb └── views │ ├── common │ └── _trigger_form.html.erb │ ├── foreman_tasks │ ├── api │ │ ├── locks │ │ │ └── show.json.rabl │ │ ├── recurring_logics │ │ │ ├── base.json.rabl │ │ │ ├── index.json.rabl │ │ │ ├── main.json.rabl │ │ │ ├── show.json.rabl │ │ │ └── update.json.rabl │ │ └── tasks │ │ │ ├── details.json.rabl │ │ │ ├── index.json.rabl │ │ │ └── show.json.rabl │ ├── layouts │ │ └── react.html.erb │ ├── recurring_logics │ │ ├── _tab_related.html.erb │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── task_groups │ │ ├── _common.html.erb │ │ ├── _detail.html.erb │ │ ├── _tab_related.html.erb │ │ └── recurring_logic_task_groups │ │ │ └── _recurring_logic_task_group.html.erb │ └── tasks │ │ ├── _lock_card.html.erb │ │ ├── dashboard │ │ ├── _latest_tasks_in_error_warning.html.erb │ │ └── _tasks_status.html.erb │ │ └── show.html.erb │ └── tasks_mailer │ ├── long_tasks.html.erb │ └── long_tasks.text.erb ├── babel.config.js ├── bin ├── dynflow-executor └── foreman-tasks ├── config ├── foreman-tasks.yaml.example └── routes.rb ├── db ├── migrate │ ├── 20131205204140_create_foreman_tasks.rb │ ├── 20131209122644_create_foreman_tasks_locks.rb │ ├── 20140324104010_remove_foreman_tasks_progress.rb │ ├── 20140813215942_add_parent_task_id.rb │ ├── 20150814204140_add_task_type_value_index.rb │ ├── 20150817102538_add_delay_attributes.rb │ ├── 20150907124936_create_recurring_logic.rb │ ├── 20150907131503_create_task_groups.rb │ ├── 20151022123457_add_recurring_logic_state.rb │ ├── 20151112152108_create_triggerings.rb │ ├── 20160920151810_add_more_lock_indexes.rb │ ├── 20160924213030_change_tasks_widget_names.rb │ ├── 20161003091412_add_missing_indexes.rb │ ├── 20171026082635_add_task_action.foreman_tasks.rb │ ├── 20180207150921_add_remote_tasks.foreman_tasks.rb │ ├── 20180216092715_use_uuid.rb │ ├── 20180927120509_add_user_id.foreman_tasks.rb │ ├── 20181019135324_add_remote_task_operation.rb │ ├── 20181206123910_create_foreman_tasks_links.foreman_tasks.rb │ ├── 20181206124952_migrate_non_exclusive_locks_to_links.foreman_tasks.rb │ ├── 20181206131436_drop_old_locks.foreman_tasks.rb │ ├── 20181206131627_make_locks_exclusive.foreman_tasks.rb │ ├── 20190318153925_add_task_state_updated_at.foreman_tasks.rb │ ├── 20200517215015_rename_bookmarks_controller.rb │ ├── 20200519093217_drop_dynflow_allow_dangerous_actions_setting.foreman_tasks.rb │ ├── 20200611090846_add_task_lock_index_on_resource_type_and_task_id.rb │ ├── 20210708123832_add_parent_task_id_to_remote_tasks.foreman_tasks.rb │ ├── 20210720115251_add_purpose_to_recurring_logic.rb │ └── 20211123170430_tasks_settings_to_dsl_category.rb └── seeds.d │ ├── 20-foreman_tasks_permissions.rb │ ├── 30-notification_blueprints.rb │ ├── 60-dynflow_proxy_feature.rb │ ├── 61-foreman_tasks_bookmarks.rb │ └── 95-mail_notifications.rb ├── deploy ├── foreman-tasks.service └── foreman-tasks.sysconfig ├── extra ├── dynflow-debug.sh ├── dynflow-executor.example ├── foreman-tasks-cleanup.sh └── foreman-tasks-export.sh ├── foreman-tasks.gemspec ├── gemfile.d └── foreman-tasks.rb ├── lib ├── foreman-tasks.rb ├── foreman_tasks.rb ├── foreman_tasks │ ├── authorizer_ext.rb │ ├── cleaner.rb │ ├── continuous_output.rb │ ├── dynflow.rb │ ├── dynflow │ │ ├── configuration.rb │ │ └── console_authorizer.rb │ ├── engine.rb │ ├── task_error.rb │ ├── tasks │ │ ├── cleanup.rake │ │ ├── dynflow.rake │ │ ├── export_tasks.rake │ │ ├── generate_task_actions.rake │ │ ├── reschedule_long_running_tasks_checker.rake │ │ └── test.rake │ ├── test_extensions.rb │ ├── test_helpers.rb │ ├── triggers.rb │ └── version.rb └── tasks │ └── gettext.rake ├── locale ├── Makefile ├── de │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── en │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── es │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── foreman_tasks.pot ├── fr │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── ja │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── ka │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── ko │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── pt_BR │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── ru │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── zh_CN │ ├── LC_MESSAGES │ │ └── foreman_tasks.mo │ └── foreman_tasks.po └── zh_TW │ ├── LC_MESSAGES │ └── foreman_tasks.mo │ └── foreman_tasks.po ├── package.json ├── script ├── npm_link_foreman_js.sh └── rails ├── test ├── controllers │ ├── api │ │ ├── recurring_logics_controller_test.rb │ │ └── tasks_controller_test.rb │ ├── recurring_logics_controller_test.rb │ └── tasks_controller_test.rb ├── factories │ ├── recurring_logic_factory.rb │ ├── task_factory.rb │ └── triggering_factory.rb ├── foreman_tasks_test_helper.rb ├── graphql │ ├── mutations │ │ └── recurring_logics │ │ │ └── cancel_mutation_test.rb │ └── queries │ │ ├── recurring_logic_test.rb │ │ ├── recurring_logics_query_test.rb │ │ ├── task_query_test.rb │ │ └── tasks_query_test.rb ├── helpers │ └── foreman_tasks │ │ ├── foreman_tasks_helper_test.rb │ │ └── tasks_helper_test.rb ├── lib │ ├── actions │ │ └── middleware │ │ │ ├── keep_current_request_id_test.rb │ │ │ ├── keep_current_taxonomies_test.rb │ │ │ ├── keep_current_timezone_test.rb │ │ │ └── keep_current_user_test.rb │ └── concerns │ │ └── polling_action_extensions_test.rb ├── support │ ├── dummy_active_job.rb │ ├── dummy_dynflow_action.rb │ ├── dummy_proxy_action.rb │ ├── dummy_recurring_dynflow_action.rb │ ├── dummy_task_group.rb │ └── history_tasks_builder.rb ├── tasks │ └── generate_task_actions_test.rb └── unit │ ├── actions │ ├── action_with_sub_plans_test.rb │ ├── bulk_action_test.rb │ ├── proxy_action_test.rb │ ├── recurring_action_test.rb │ └── trigger_proxy_batch_test.rb │ ├── cleaner_test.rb │ ├── config │ └── environment.rb │ ├── dynflow_console_authorizer_test.rb │ ├── locking_test.rb │ ├── proxy_selector_test.rb │ ├── recurring_logic_test.rb │ ├── remote_task_test.rb │ ├── summarizer_test.rb │ ├── task_groups_test.rb │ ├── task_test.rb │ ├── tasks_setting_test.rb │ ├── triggering_test.rb │ ├── troubleshooting_help_generator_test.rb │ └── ui_notifications_test.rb └── webpack ├── ForemanTasks ├── Components │ ├── Chart │ │ └── Chart.js │ ├── TaskActions │ │ ├── TaskAction.test.js │ │ ├── TaskActionHelpers.js │ │ ├── TaskActionHelpers.test.js │ │ ├── TaskActionsConstants.js │ │ ├── __snapshots__ │ │ │ └── TaskAction.test.js.snap │ │ └── index.js │ ├── TaskDetails │ │ ├── Components │ │ │ ├── Errors.js │ │ │ ├── Locks.js │ │ │ ├── Raw.js │ │ │ ├── RunningSteps.js │ │ │ ├── Task.js │ │ │ ├── TaskButtons.js │ │ │ ├── TaskHelper.js │ │ │ ├── TaskInfo.js │ │ │ ├── TaskSkeleton.js │ │ │ └── __tests__ │ │ │ │ ├── Errors.test.js │ │ │ │ ├── Locks.test.js │ │ │ │ ├── Raw.test.js │ │ │ │ ├── RunningSteps.test.js │ │ │ │ ├── Task.test.js │ │ │ │ ├── TaskButtons.test.js │ │ │ │ ├── TaskHelper.test.js │ │ │ │ ├── TaskInfo.test.js │ │ │ │ └── __snapshots__ │ │ │ │ ├── Errors.test.js.snap │ │ │ │ ├── Locks.test.js.snap │ │ │ │ ├── Raw.test.js.snap │ │ │ │ ├── RunningSteps.test.js.snap │ │ │ │ ├── Task.test.js.snap │ │ │ │ └── TaskInfo.test.js.snap │ │ ├── TaskDetails.js │ │ ├── TaskDetails.scss │ │ ├── TaskDetailsActions.js │ │ ├── TaskDetailsConstants.js │ │ ├── TaskDetailsSelectors.js │ │ ├── TasksDetailsHelper.js │ │ ├── __tests__ │ │ │ ├── TaskDetails.fixtures.js │ │ │ ├── TaskDetails.test.js │ │ │ ├── TaskDetailsActions.test.js │ │ │ └── __snapshots__ │ │ │ │ ├── TaskDetails.test.js.snap │ │ │ │ └── TaskDetailsActions.test.js.snap │ │ └── index.js │ ├── TasksDashboard │ │ ├── Components │ │ │ ├── TasksCardsGrid │ │ │ │ ├── Components │ │ │ │ │ ├── PausedTasksCard │ │ │ │ │ │ ├── PausedTasksCard.js │ │ │ │ │ │ ├── PausedTasksCard.test.js │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── PausedTasksCard.test.js.snap │ │ │ │ │ ├── RunningTasksCard │ │ │ │ │ │ ├── RunningTasksCard.js │ │ │ │ │ │ ├── RunningTasksCard.test.js │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── RunningTasksCard.test.js.snap │ │ │ │ │ ├── ScheduledTasksCard │ │ │ │ │ │ ├── ScheduledTasksCard.js │ │ │ │ │ │ ├── ScheduledTasksCard.scss │ │ │ │ │ │ ├── ScheduledTasksCard.test.js │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── ScheduledTasksCard.test.js.snap │ │ │ │ │ ├── StoppedTasksCard │ │ │ │ │ │ ├── OtherInfo.js │ │ │ │ │ │ ├── OtherInfo.test.js │ │ │ │ │ │ ├── StoppedTasksCard.js │ │ │ │ │ │ ├── StoppedTasksCard.scss │ │ │ │ │ │ ├── StoppedTasksCard.test.js │ │ │ │ │ │ ├── StoppedTasksCardTable.js │ │ │ │ │ │ ├── StoppedTasksCardTable.test.js │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ ├── OtherInfo.test.js.snap │ │ │ │ │ │ │ ├── StoppedTasksCard.test.js.snap │ │ │ │ │ │ │ └── StoppedTasksCardTable.test.js.snap │ │ │ │ │ ├── TasksDonutCard │ │ │ │ │ │ ├── TasksDonutCard.js │ │ │ │ │ │ ├── TasksDonutCard.scss │ │ │ │ │ │ ├── TasksDonutCard.test.js │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ │ └── TasksDonutCard.test.js.snap │ │ │ │ │ └── TasksDonutChart │ │ │ │ │ │ ├── TasksDonutChart.js │ │ │ │ │ │ ├── TasksDonutChart.scss │ │ │ │ │ │ ├── TasksDonutChart.test.js │ │ │ │ │ │ ├── TasksDonutChartConstants.js │ │ │ │ │ │ ├── TasksDonutChartHelper.js │ │ │ │ │ │ ├── TasksDonutChartHelper.test.js │ │ │ │ │ │ └── __snapshots__ │ │ │ │ │ │ ├── TasksDonutChart.test.js.snap │ │ │ │ │ │ └── TasksDonutChartHelper.test.js.snap │ │ │ │ ├── TasksCardsGrid.fixtures.js │ │ │ │ ├── TasksCardsGrid.js │ │ │ │ ├── TasksCardsGrid.test.js │ │ │ │ └── __snapshots__ │ │ │ │ │ └── TasksCardsGrid.test.js.snap │ │ │ ├── TasksLabelsRow │ │ │ │ ├── TasksLabelsRow.js │ │ │ │ ├── TasksLabelsRow.scss │ │ │ │ ├── TasksLabelsRow.test.js │ │ │ │ └── __snapshots__ │ │ │ │ │ └── TasksLabelsRow.test.js.snap │ │ │ └── TasksTimeRow │ │ │ │ ├── Components │ │ │ │ └── TimeDropDown │ │ │ │ │ ├── TimeDropDown.js │ │ │ │ │ ├── TimeDropDown.test.js │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── TimeDropDown.test.js.snap │ │ │ │ ├── TasksTimeRow.js │ │ │ │ ├── TasksTimeRow.scss │ │ │ │ ├── TasksTimeRow.test.js │ │ │ │ └── __snapshots__ │ │ │ │ └── TasksTimeRow.test.js.snap │ │ ├── TasksDashboard.js │ │ ├── TasksDashboard.scss │ │ ├── TasksDashboardActions.js │ │ ├── TasksDashboardConstants.js │ │ ├── TasksDashboardHelper.js │ │ ├── TasksDashboardPropTypes.js │ │ ├── TasksDashboardReducer.js │ │ ├── TasksDashboardSelectors.js │ │ ├── __tests__ │ │ │ ├── TaskDashboard.fixtures.js │ │ │ ├── TasksDashboard.test.js │ │ │ ├── TasksDashboardActions.test.js │ │ │ ├── TasksDashboardHelper.test.js │ │ │ ├── TasksDashboardReducer.test.js │ │ │ ├── TasksDashboardSelectors.test.js │ │ │ └── __snapshots__ │ │ │ │ ├── TasksDashboard.test.js.snap │ │ │ │ ├── TasksDashboardActions.test.js.snap │ │ │ │ ├── TasksDashboardReducer.test.js.snap │ │ │ │ └── TasksDashboardSelectors.test.js.snap │ │ └── index.js │ ├── TasksTable │ │ ├── Components │ │ │ ├── ActionSelectButton.js │ │ │ ├── ConfirmModal │ │ │ │ ├── ConfirmModalSelectors.js │ │ │ │ ├── GenericConfirmModal.js │ │ │ │ ├── __test__ │ │ │ │ │ ├── ConfirmModalSelectors.test.js │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── ConfirmModalSelectors.test.js.snap │ │ │ │ │ └── index.test.js │ │ │ │ ├── createBulkTaskModal.js │ │ │ │ ├── createTaskModal.js │ │ │ │ └── index.js │ │ │ ├── SelectAllAlert.js │ │ │ ├── TableSelectionCell.js │ │ │ ├── TableSelectionHeaderCell.js │ │ │ └── __test__ │ │ │ │ ├── ActionSelectButton.test.js │ │ │ │ ├── SelectAllAlert.test.js │ │ │ │ ├── TableSelectionCell.test.js │ │ │ │ ├── TableSelectionHeaderCell.test.js │ │ │ │ └── __snapshots__ │ │ │ │ ├── ActionSelectButton.test.js.snap │ │ │ │ ├── SelectAllAlert.test.js.snap │ │ │ │ ├── TableSelectionCell.test.js.snap │ │ │ │ └── TableSelectionHeaderCell.test.js.snap │ │ ├── SubTasksPage.js │ │ ├── TasksBulkActions.js │ │ ├── TasksIndexPage.js │ │ ├── TasksTable.js │ │ ├── TasksTableActions.js │ │ ├── TasksTableConstants.js │ │ ├── TasksTableHelpers.js │ │ ├── TasksTablePage.js │ │ ├── TasksTablePage.scss │ │ ├── TasksTableReducer.js │ │ ├── TasksTableSchema.js │ │ ├── TasksTableSelectors.js │ │ ├── __tests__ │ │ │ ├── SubTasksPage.test.js │ │ │ ├── TasksBulkActions.test.js │ │ │ ├── TasksIndexPage.test.js │ │ │ ├── TasksTable.fixtures.js │ │ │ ├── TasksTable.test.js │ │ │ ├── TasksTableActions.test.js │ │ │ ├── TasksTableHelpers.test.js │ │ │ ├── TasksTablePage.test.js │ │ │ ├── TasksTableReducer.test.js │ │ │ └── __snapshots__ │ │ │ │ ├── SubTasksPage.test.js.snap │ │ │ │ ├── TasksBulkActions.test.js.snap │ │ │ │ ├── TasksIndexPage.test.js.snap │ │ │ │ ├── TasksTable.test.js.snap │ │ │ │ ├── TasksTableActions.test.js.snap │ │ │ │ ├── TasksTablePage.test.js.snap │ │ │ │ └── TasksTableReducer.test.js.snap │ │ ├── formatters │ │ │ ├── __test__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── actionCellFormatter.test.js.snap │ │ │ │ │ ├── actionNameCellFormatter.test.js.snap │ │ │ │ │ ├── dateCellFormmatter.test.js.snap │ │ │ │ │ ├── durationCellFormmatter.test.js.snap │ │ │ │ │ ├── selectionCellFormatter.test.js.snap │ │ │ │ │ └── selectionHeaderCellFormatter.test.js.snap │ │ │ │ ├── actionCellFormatter.test.js │ │ │ │ ├── actionNameCellFormatter.test.js │ │ │ │ ├── dateCellFormmatter.test.js │ │ │ │ ├── durationCellFormmatter.test.js │ │ │ │ ├── selectionCellFormatter.test.js │ │ │ │ └── selectionHeaderCellFormatter.test.js │ │ │ ├── actionCellFormatter.js │ │ │ ├── actionNameCellFormatter.js │ │ │ ├── dateCellFormmatter.js │ │ │ ├── durationCellFormmatter.js │ │ │ ├── index.js │ │ │ ├── selectionCellFormatter.js │ │ │ └── selectionHeaderCellFormatter.js │ │ └── index.js │ └── common │ │ ├── ActionButtons │ │ ├── ActionButton.js │ │ ├── ActionButton.test.js │ │ └── __snapshots__ │ │ │ └── ActionButton.test.js.snap │ │ ├── ClickConfirmation │ │ ├── ClickConfirmation.test.js │ │ └── index.js │ │ ├── ToastsHelpers │ │ ├── ToastTypesConstants.js │ │ └── index.js │ │ └── urlHelpers.js ├── ForemanTasks.js ├── ForemanTasks.test.js ├── ForemanTasksReducers.js ├── ForemanTasksSelectors.js ├── Routes │ ├── ForemanTasksRouter.js │ ├── ForemanTasksRouter.test.js │ ├── ForemanTasksRoutes.js │ ├── ForemanTasksRoutes.test.js │ ├── ShowTask │ │ ├── ShowTask.js │ │ ├── __tests__ │ │ │ ├── ShowTask.test.js │ │ │ └── __snapshots__ │ │ │ │ └── ShowTask.test.js.snap │ │ ├── index.js │ │ └── showTask.scss │ └── __snapshots__ │ │ ├── ForemanTasksRouter.test.js.snap │ │ └── ForemanTasksRoutes.test.js.snap ├── __snapshots__ │ └── ForemanTasks.test.js.snap └── index.js ├── __mocks__ └── foremanReact │ ├── common │ ├── I18n.js │ ├── helpers.js │ └── urlHelpers.js │ ├── components │ ├── Layout │ │ └── LayoutActions.js │ ├── Pagination │ │ └── index.js │ ├── ToastsList │ │ └── index.js │ └── common │ │ ├── ActionButtons │ │ └── ActionButtons.js │ │ ├── MessageBox.js │ │ ├── dates │ │ ├── LongDateTime.js │ │ └── RelativeDateTime.js │ │ ├── table.js │ │ └── table │ │ └── actionsHelpers │ │ └── actionTypeCreator.js │ ├── constants.js │ ├── redux │ ├── API │ │ ├── APISelectors.js │ │ └── index.js │ └── middlewares │ │ └── IntervalMiddleware.js │ └── routes │ └── common │ └── PageLayout │ ├── PageLayout.js │ └── components │ └── ExportButton │ └── ExportButton.js └── index.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/js_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.github/workflows/js_tests.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/ruby_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.github/workflows/ruby_tests.yml -------------------------------------------------------------------------------- /.github/workflows/test-breaking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.github/workflows/test-breaking.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.gitignore -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.packit.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.prettierrc -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/.tx/config -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/README.md -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/de/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/de/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/en/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/en/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/es/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/es/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/fr/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/fr/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/ja/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/ja/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/ka/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/ka/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/ko/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/ko/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/pt_BR/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/pt_BR/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/ru/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/ru/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/zh_CN/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/zh_CN/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman-tasks/locale/zh_TW/foreman_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman-tasks/locale/zh_TW/foreman_tasks.js -------------------------------------------------------------------------------- /app/assets/javascripts/foreman_tasks/foreman_tasks.js: -------------------------------------------------------------------------------- 1 | /* 2 | *= require foreman_tasks/trigger_form.js 3 | */ 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/foreman_tasks/trigger_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/javascripts/foreman_tasks/trigger_form.js -------------------------------------------------------------------------------- /app/assets/stylesheets/foreman_tasks/foreman_tasks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/assets/stylesheets/foreman_tasks/foreman_tasks.css -------------------------------------------------------------------------------- /app/assets/stylesheets/foreman_tasks/trigger_form.css: -------------------------------------------------------------------------------- 1 | div.form-group div.trigger_fields { 2 | margin-top: 15px; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /app/controllers/concerns/foreman_tasks/find_tasks_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/concerns/foreman_tasks/find_tasks_common.rb -------------------------------------------------------------------------------- /app/controllers/foreman_tasks/api/recurring_logics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/foreman_tasks/api/recurring_logics_controller.rb -------------------------------------------------------------------------------- /app/controllers/foreman_tasks/api/tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/foreman_tasks/api/tasks_controller.rb -------------------------------------------------------------------------------- /app/controllers/foreman_tasks/concerns/hosts_controller_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/foreman_tasks/concerns/hosts_controller_extension.rb -------------------------------------------------------------------------------- /app/controllers/foreman_tasks/concerns/parameters/recurring_logic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/foreman_tasks/concerns/parameters/recurring_logic.rb -------------------------------------------------------------------------------- /app/controllers/foreman_tasks/concerns/parameters/triggering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/foreman_tasks/concerns/parameters/triggering.rb -------------------------------------------------------------------------------- /app/controllers/foreman_tasks/react_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/foreman_tasks/react_controller.rb -------------------------------------------------------------------------------- /app/controllers/foreman_tasks/recurring_logics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/foreman_tasks/recurring_logics_controller.rb -------------------------------------------------------------------------------- /app/controllers/foreman_tasks/tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/controllers/foreman_tasks/tasks_controller.rb -------------------------------------------------------------------------------- /app/graphql/mutations/recurring_logics/cancel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/graphql/mutations/recurring_logics/cancel.rb -------------------------------------------------------------------------------- /app/graphql/types/recurring_logic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/graphql/types/recurring_logic.rb -------------------------------------------------------------------------------- /app/graphql/types/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/graphql/types/task.rb -------------------------------------------------------------------------------- /app/graphql/types/triggering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/graphql/types/triggering.rb -------------------------------------------------------------------------------- /app/helpers/foreman_tasks/foreman_tasks_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/helpers/foreman_tasks/foreman_tasks_helper.rb -------------------------------------------------------------------------------- /app/helpers/foreman_tasks/tasks_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/helpers/foreman_tasks/tasks_helper.rb -------------------------------------------------------------------------------- /app/lib/actions/action_with_sub_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/action_with_sub_plans.rb -------------------------------------------------------------------------------- /app/lib/actions/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/base.rb -------------------------------------------------------------------------------- /app/lib/actions/bulk_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/bulk_action.rb -------------------------------------------------------------------------------- /app/lib/actions/check_long_running_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/check_long_running_tasks.rb -------------------------------------------------------------------------------- /app/lib/actions/deliver_long_running_tasks_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/deliver_long_running_tasks_notification.rb -------------------------------------------------------------------------------- /app/lib/actions/entry_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/entry_action.rb -------------------------------------------------------------------------------- /app/lib/actions/foreman/host/import_facts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/foreman/host/import_facts.rb -------------------------------------------------------------------------------- /app/lib/actions/foreman/puppetclass/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/foreman/puppetclass/import.rb -------------------------------------------------------------------------------- /app/lib/actions/helpers/args_serialization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/helpers/args_serialization.rb -------------------------------------------------------------------------------- /app/lib/actions/helpers/humanizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/helpers/humanizer.rb -------------------------------------------------------------------------------- /app/lib/actions/helpers/lifecycle_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/helpers/lifecycle_logging.rb -------------------------------------------------------------------------------- /app/lib/actions/helpers/lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/helpers/lock.rb -------------------------------------------------------------------------------- /app/lib/actions/helpers/with_continuous_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/helpers/with_continuous_output.rb -------------------------------------------------------------------------------- /app/lib/actions/helpers/with_delegated_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/helpers/with_delegated_action.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/hide_secrets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/hide_secrets.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/inherit_task_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/inherit_task_groups.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/keep_current_request_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/keep_current_request_id.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/keep_current_taxonomies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/keep_current_taxonomies.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/keep_current_timezone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/keep_current_timezone.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/keep_current_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/keep_current_user.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/load_setting_values.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/load_setting_values.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/proxy_batch_triggering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/proxy_batch_triggering.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/rails_executor_wrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/rails_executor_wrap.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/recurring_logic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/recurring_logic.rb -------------------------------------------------------------------------------- /app/lib/actions/middleware/watch_delegated_proxy_sub_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/middleware/watch_delegated_proxy_sub_tasks.rb -------------------------------------------------------------------------------- /app/lib/actions/observable_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/observable_action.rb -------------------------------------------------------------------------------- /app/lib/actions/proxy_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/proxy_action.rb -------------------------------------------------------------------------------- /app/lib/actions/recurring_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/recurring_action.rb -------------------------------------------------------------------------------- /app/lib/actions/serializers/active_record_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/serializers/active_record_serializer.rb -------------------------------------------------------------------------------- /app/lib/actions/task_synchronization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/task_synchronization.rb -------------------------------------------------------------------------------- /app/lib/actions/trigger_proxy_batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/actions/trigger_proxy_batch.rb -------------------------------------------------------------------------------- /app/lib/foreman_tasks/concerns/polling_action_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/foreman_tasks/concerns/polling_action_extensions.rb -------------------------------------------------------------------------------- /app/lib/proxy_api/foreman_dynflow/dynflow_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/lib/proxy_api/foreman_dynflow/dynflow_proxy.rb -------------------------------------------------------------------------------- /app/mailers/tasks_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/mailers/tasks_mailer.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/concerns/action_subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/concerns/action_subject.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/concerns/action_triggering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/concerns/action_triggering.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/concerns/host_action_subject.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/concerns/host_action_subject.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/concerns/user_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/concerns/user_extensions.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/link.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/lock.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/recurring_logic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/recurring_logic.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/recurring_logic_cancelled_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/recurring_logic_cancelled_exception.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/remote_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/remote_task.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task/dynflow_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task/dynflow_task.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task/search.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task/status_explicator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task/status_explicator.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task/summarizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task/summarizer.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task/task_cancelled_exception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task/task_cancelled_exception.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task_group.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task_group_member.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task_group_member.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/task_groups/recurring_logic_task_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/task_groups/recurring_logic_task_group.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/tasks_mail_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/tasks_mail_notification.rb -------------------------------------------------------------------------------- /app/models/foreman_tasks/triggering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/models/foreman_tasks/triggering.rb -------------------------------------------------------------------------------- /app/services/foreman_tasks/proxy_selector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/foreman_tasks/proxy_selector.rb -------------------------------------------------------------------------------- /app/services/foreman_tasks/troubleshooting_help_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/foreman_tasks/troubleshooting_help_generator.rb -------------------------------------------------------------------------------- /app/services/ui_notifications/tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/ui_notifications/tasks.rb -------------------------------------------------------------------------------- /app/services/ui_notifications/tasks/task_bulk_cancel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/ui_notifications/tasks/task_bulk_cancel.rb -------------------------------------------------------------------------------- /app/services/ui_notifications/tasks/task_bulk_resume.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/ui_notifications/tasks/task_bulk_resume.rb -------------------------------------------------------------------------------- /app/services/ui_notifications/tasks/task_bulk_stop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/ui_notifications/tasks/task_bulk_stop.rb -------------------------------------------------------------------------------- /app/services/ui_notifications/tasks/task_paused_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/ui_notifications/tasks/task_paused_admin.rb -------------------------------------------------------------------------------- /app/services/ui_notifications/tasks/task_paused_owner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/ui_notifications/tasks/task_paused_owner.rb -------------------------------------------------------------------------------- /app/services/ui_notifications/tasks/tasks_running_long.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/services/ui_notifications/tasks/tasks_running_long.rb -------------------------------------------------------------------------------- /app/views/common/_trigger_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/common/_trigger_form.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/locks/show.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/locks/show.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/recurring_logics/base.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/recurring_logics/base.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/recurring_logics/index.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/recurring_logics/index.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/recurring_logics/main.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/recurring_logics/main.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/recurring_logics/show.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/recurring_logics/show.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/recurring_logics/update.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/recurring_logics/update.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/tasks/details.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/tasks/details.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/tasks/index.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/tasks/index.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/api/tasks/show.json.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/api/tasks/show.json.rabl -------------------------------------------------------------------------------- /app/views/foreman_tasks/layouts/react.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/layouts/react.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/recurring_logics/_tab_related.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/recurring_logics/_tab_related.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/recurring_logics/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/recurring_logics/index.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/recurring_logics/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/recurring_logics/show.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/task_groups/_common.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/task_groups/_common.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/task_groups/_detail.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/task_groups/_detail.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/task_groups/_tab_related.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/task_groups/_tab_related.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/tasks/_lock_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/tasks/_lock_card.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb -------------------------------------------------------------------------------- /app/views/foreman_tasks/tasks/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/foreman_tasks/tasks/show.html.erb -------------------------------------------------------------------------------- /app/views/tasks_mailer/long_tasks.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/tasks_mailer/long_tasks.html.erb -------------------------------------------------------------------------------- /app/views/tasks_mailer/long_tasks.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/app/views/tasks_mailer/long_tasks.text.erb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['@theforeman/builder/babel'], 3 | }; 4 | -------------------------------------------------------------------------------- /bin/dynflow-executor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/bin/dynflow-executor -------------------------------------------------------------------------------- /bin/foreman-tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/bin/foreman-tasks -------------------------------------------------------------------------------- /config/foreman-tasks.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/config/foreman-tasks.yaml.example -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20131205204140_create_foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20131205204140_create_foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20131209122644_create_foreman_tasks_locks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20131209122644_create_foreman_tasks_locks.rb -------------------------------------------------------------------------------- /db/migrate/20140324104010_remove_foreman_tasks_progress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20140324104010_remove_foreman_tasks_progress.rb -------------------------------------------------------------------------------- /db/migrate/20140813215942_add_parent_task_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20140813215942_add_parent_task_id.rb -------------------------------------------------------------------------------- /db/migrate/20150814204140_add_task_type_value_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20150814204140_add_task_type_value_index.rb -------------------------------------------------------------------------------- /db/migrate/20150817102538_add_delay_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20150817102538_add_delay_attributes.rb -------------------------------------------------------------------------------- /db/migrate/20150907124936_create_recurring_logic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20150907124936_create_recurring_logic.rb -------------------------------------------------------------------------------- /db/migrate/20150907131503_create_task_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20150907131503_create_task_groups.rb -------------------------------------------------------------------------------- /db/migrate/20151022123457_add_recurring_logic_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20151022123457_add_recurring_logic_state.rb -------------------------------------------------------------------------------- /db/migrate/20151112152108_create_triggerings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20151112152108_create_triggerings.rb -------------------------------------------------------------------------------- /db/migrate/20160920151810_add_more_lock_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20160920151810_add_more_lock_indexes.rb -------------------------------------------------------------------------------- /db/migrate/20160924213030_change_tasks_widget_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20160924213030_change_tasks_widget_names.rb -------------------------------------------------------------------------------- /db/migrate/20161003091412_add_missing_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20161003091412_add_missing_indexes.rb -------------------------------------------------------------------------------- /db/migrate/20171026082635_add_task_action.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20171026082635_add_task_action.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20180207150921_add_remote_tasks.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20180207150921_add_remote_tasks.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20180216092715_use_uuid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20180216092715_use_uuid.rb -------------------------------------------------------------------------------- /db/migrate/20180927120509_add_user_id.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20180927120509_add_user_id.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20181019135324_add_remote_task_operation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20181019135324_add_remote_task_operation.rb -------------------------------------------------------------------------------- /db/migrate/20181206123910_create_foreman_tasks_links.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20181206123910_create_foreman_tasks_links.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20181206124952_migrate_non_exclusive_locks_to_links.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20181206124952_migrate_non_exclusive_locks_to_links.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20181206131436_drop_old_locks.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20181206131436_drop_old_locks.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20181206131627_make_locks_exclusive.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20181206131627_make_locks_exclusive.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20190318153925_add_task_state_updated_at.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20190318153925_add_task_state_updated_at.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20200517215015_rename_bookmarks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20200517215015_rename_bookmarks_controller.rb -------------------------------------------------------------------------------- /db/migrate/20200519093217_drop_dynflow_allow_dangerous_actions_setting.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20200519093217_drop_dynflow_allow_dangerous_actions_setting.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20200611090846_add_task_lock_index_on_resource_type_and_task_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20200611090846_add_task_lock_index_on_resource_type_and_task_id.rb -------------------------------------------------------------------------------- /db/migrate/20210708123832_add_parent_task_id_to_remote_tasks.foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20210708123832_add_parent_task_id_to_remote_tasks.foreman_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20210720115251_add_purpose_to_recurring_logic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20210720115251_add_purpose_to_recurring_logic.rb -------------------------------------------------------------------------------- /db/migrate/20211123170430_tasks_settings_to_dsl_category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/migrate/20211123170430_tasks_settings_to_dsl_category.rb -------------------------------------------------------------------------------- /db/seeds.d/20-foreman_tasks_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/seeds.d/20-foreman_tasks_permissions.rb -------------------------------------------------------------------------------- /db/seeds.d/30-notification_blueprints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/seeds.d/30-notification_blueprints.rb -------------------------------------------------------------------------------- /db/seeds.d/60-dynflow_proxy_feature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/seeds.d/60-dynflow_proxy_feature.rb -------------------------------------------------------------------------------- /db/seeds.d/61-foreman_tasks_bookmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/seeds.d/61-foreman_tasks_bookmarks.rb -------------------------------------------------------------------------------- /db/seeds.d/95-mail_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/db/seeds.d/95-mail_notifications.rb -------------------------------------------------------------------------------- /deploy/foreman-tasks.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/deploy/foreman-tasks.service -------------------------------------------------------------------------------- /deploy/foreman-tasks.sysconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/deploy/foreman-tasks.sysconfig -------------------------------------------------------------------------------- /extra/dynflow-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/extra/dynflow-debug.sh -------------------------------------------------------------------------------- /extra/dynflow-executor.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/extra/dynflow-executor.example -------------------------------------------------------------------------------- /extra/foreman-tasks-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/extra/foreman-tasks-cleanup.sh -------------------------------------------------------------------------------- /extra/foreman-tasks-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/extra/foreman-tasks-export.sh -------------------------------------------------------------------------------- /foreman-tasks.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/foreman-tasks.gemspec -------------------------------------------------------------------------------- /gemfile.d/foreman-tasks.rb: -------------------------------------------------------------------------------- 1 | gem 'sqlite3' 2 | -------------------------------------------------------------------------------- /lib/foreman-tasks.rb: -------------------------------------------------------------------------------- 1 | require 'foreman_tasks' 2 | -------------------------------------------------------------------------------- /lib/foreman_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/authorizer_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/authorizer_ext.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/cleaner.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/continuous_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/continuous_output.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/dynflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/dynflow.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/dynflow/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/dynflow/configuration.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/dynflow/console_authorizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/dynflow/console_authorizer.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/engine.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/task_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/task_error.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/tasks/cleanup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/tasks/cleanup.rake -------------------------------------------------------------------------------- /lib/foreman_tasks/tasks/dynflow.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/tasks/dynflow.rake -------------------------------------------------------------------------------- /lib/foreman_tasks/tasks/export_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/tasks/export_tasks.rake -------------------------------------------------------------------------------- /lib/foreman_tasks/tasks/generate_task_actions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/tasks/generate_task_actions.rake -------------------------------------------------------------------------------- /lib/foreman_tasks/tasks/reschedule_long_running_tasks_checker.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/tasks/reschedule_long_running_tasks_checker.rake -------------------------------------------------------------------------------- /lib/foreman_tasks/tasks/test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/tasks/test.rake -------------------------------------------------------------------------------- /lib/foreman_tasks/test_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/test_extensions.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/test_helpers.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/triggers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/foreman_tasks/triggers.rb -------------------------------------------------------------------------------- /lib/foreman_tasks/version.rb: -------------------------------------------------------------------------------- 1 | module ForemanTasks 2 | VERSION = '11.0.6'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/gettext.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/lib/tasks/gettext.rake -------------------------------------------------------------------------------- /locale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/Makefile -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/de/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/de/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/de/foreman_tasks.po -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/en/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/en/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/en/foreman_tasks.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/es/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/es/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/es/foreman_tasks.po -------------------------------------------------------------------------------- /locale/foreman_tasks.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/foreman_tasks.pot -------------------------------------------------------------------------------- /locale/fr/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/fr/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/fr/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/fr/foreman_tasks.po -------------------------------------------------------------------------------- /locale/ja/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/ja/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/ja/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/ja/foreman_tasks.po -------------------------------------------------------------------------------- /locale/ka/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/ka/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/ka/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/ka/foreman_tasks.po -------------------------------------------------------------------------------- /locale/ko/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/ko/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/ko/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/ko/foreman_tasks.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/pt_BR/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/pt_BR/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/pt_BR/foreman_tasks.po -------------------------------------------------------------------------------- /locale/ru/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/ru/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/ru/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/ru/foreman_tasks.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/zh_CN/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/zh_CN/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/zh_CN/foreman_tasks.po -------------------------------------------------------------------------------- /locale/zh_TW/LC_MESSAGES/foreman_tasks.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/zh_TW/LC_MESSAGES/foreman_tasks.mo -------------------------------------------------------------------------------- /locale/zh_TW/foreman_tasks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/locale/zh_TW/foreman_tasks.po -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/package.json -------------------------------------------------------------------------------- /script/npm_link_foreman_js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/script/npm_link_foreman_js.sh -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/script/rails -------------------------------------------------------------------------------- /test/controllers/api/recurring_logics_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/controllers/api/recurring_logics_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/tasks_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/controllers/api/tasks_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/recurring_logics_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/controllers/recurring_logics_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/tasks_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/controllers/tasks_controller_test.rb -------------------------------------------------------------------------------- /test/factories/recurring_logic_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/factories/recurring_logic_factory.rb -------------------------------------------------------------------------------- /test/factories/task_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/factories/task_factory.rb -------------------------------------------------------------------------------- /test/factories/triggering_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/factories/triggering_factory.rb -------------------------------------------------------------------------------- /test/foreman_tasks_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/foreman_tasks_test_helper.rb -------------------------------------------------------------------------------- /test/graphql/mutations/recurring_logics/cancel_mutation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/graphql/mutations/recurring_logics/cancel_mutation_test.rb -------------------------------------------------------------------------------- /test/graphql/queries/recurring_logic_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/graphql/queries/recurring_logic_test.rb -------------------------------------------------------------------------------- /test/graphql/queries/recurring_logics_query_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/graphql/queries/recurring_logics_query_test.rb -------------------------------------------------------------------------------- /test/graphql/queries/task_query_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/graphql/queries/task_query_test.rb -------------------------------------------------------------------------------- /test/graphql/queries/tasks_query_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/graphql/queries/tasks_query_test.rb -------------------------------------------------------------------------------- /test/helpers/foreman_tasks/foreman_tasks_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/helpers/foreman_tasks/foreman_tasks_helper_test.rb -------------------------------------------------------------------------------- /test/helpers/foreman_tasks/tasks_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/helpers/foreman_tasks/tasks_helper_test.rb -------------------------------------------------------------------------------- /test/lib/actions/middleware/keep_current_request_id_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/lib/actions/middleware/keep_current_request_id_test.rb -------------------------------------------------------------------------------- /test/lib/actions/middleware/keep_current_taxonomies_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/lib/actions/middleware/keep_current_taxonomies_test.rb -------------------------------------------------------------------------------- /test/lib/actions/middleware/keep_current_timezone_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/lib/actions/middleware/keep_current_timezone_test.rb -------------------------------------------------------------------------------- /test/lib/actions/middleware/keep_current_user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/lib/actions/middleware/keep_current_user_test.rb -------------------------------------------------------------------------------- /test/lib/concerns/polling_action_extensions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/lib/concerns/polling_action_extensions_test.rb -------------------------------------------------------------------------------- /test/support/dummy_active_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/support/dummy_active_job.rb -------------------------------------------------------------------------------- /test/support/dummy_dynflow_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/support/dummy_dynflow_action.rb -------------------------------------------------------------------------------- /test/support/dummy_proxy_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/support/dummy_proxy_action.rb -------------------------------------------------------------------------------- /test/support/dummy_recurring_dynflow_action.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/support/dummy_recurring_dynflow_action.rb -------------------------------------------------------------------------------- /test/support/dummy_task_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/support/dummy_task_group.rb -------------------------------------------------------------------------------- /test/support/history_tasks_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/support/history_tasks_builder.rb -------------------------------------------------------------------------------- /test/tasks/generate_task_actions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/tasks/generate_task_actions_test.rb -------------------------------------------------------------------------------- /test/unit/actions/action_with_sub_plans_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/actions/action_with_sub_plans_test.rb -------------------------------------------------------------------------------- /test/unit/actions/bulk_action_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/actions/bulk_action_test.rb -------------------------------------------------------------------------------- /test/unit/actions/proxy_action_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/actions/proxy_action_test.rb -------------------------------------------------------------------------------- /test/unit/actions/recurring_action_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/actions/recurring_action_test.rb -------------------------------------------------------------------------------- /test/unit/actions/trigger_proxy_batch_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/actions/trigger_proxy_batch_test.rb -------------------------------------------------------------------------------- /test/unit/cleaner_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/cleaner_test.rb -------------------------------------------------------------------------------- /test/unit/config/environment.rb: -------------------------------------------------------------------------------- 1 | # dummy appllication.rb - for unit testing dynflow-executor 2 | -------------------------------------------------------------------------------- /test/unit/dynflow_console_authorizer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/dynflow_console_authorizer_test.rb -------------------------------------------------------------------------------- /test/unit/locking_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/locking_test.rb -------------------------------------------------------------------------------- /test/unit/proxy_selector_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/proxy_selector_test.rb -------------------------------------------------------------------------------- /test/unit/recurring_logic_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/recurring_logic_test.rb -------------------------------------------------------------------------------- /test/unit/remote_task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/remote_task_test.rb -------------------------------------------------------------------------------- /test/unit/summarizer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/summarizer_test.rb -------------------------------------------------------------------------------- /test/unit/task_groups_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/task_groups_test.rb -------------------------------------------------------------------------------- /test/unit/task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/task_test.rb -------------------------------------------------------------------------------- /test/unit/tasks_setting_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/tasks_setting_test.rb -------------------------------------------------------------------------------- /test/unit/triggering_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/triggering_test.rb -------------------------------------------------------------------------------- /test/unit/troubleshooting_help_generator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/troubleshooting_help_generator_test.rb -------------------------------------------------------------------------------- /test/unit/ui_notifications_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/test/unit/ui_notifications_test.rb -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/Chart/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/Chart/Chart.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskActions/TaskAction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskActions/TaskAction.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskActions/TaskActionsConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskActions/TaskActionsConstants.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskActions/__snapshots__/TaskAction.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskActions/__snapshots__/TaskAction.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskActions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskActions/index.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/Locks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/Locks.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/Raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/Raw.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/Task.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/TaskHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/TaskHelper.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/TaskSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/TaskSkeleton.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Errors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Errors.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Locks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Locks.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Raw.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Raw.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/RunningSteps.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/RunningSteps.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Task.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Task.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/TaskButtons.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/TaskButtons.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/TaskHelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/TaskHelper.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/TaskInfo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/TaskInfo.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Errors.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Errors.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Locks.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Locks.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Raw.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Raw.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/RunningSteps.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/RunningSteps.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Task.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Task.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/TaskInfo.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/TaskInfo.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/TaskDetails.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/TaskDetails.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/TaskDetailsConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsConstants.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/TaskDetailsSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsSelectors.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/TasksDetailsHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/TasksDetailsHelper.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetails.fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetails.fixtures.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetails.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetails.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetailsActions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetailsActions.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetails.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetails.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetailsActions.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetailsActions.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TaskDetails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TaskDetails/index.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/PausedTasksCard/PausedTasksCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/PausedTasksCard/PausedTasksCard.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/PausedTasksCard/PausedTasksCard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/PausedTasksCard/PausedTasksCard.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/PausedTasksCard/__snapshots__/PausedTasksCard.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/PausedTasksCard/__snapshots__/PausedTasksCard.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/RunningTasksCard/RunningTasksCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/RunningTasksCard/RunningTasksCard.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/RunningTasksCard/RunningTasksCard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/RunningTasksCard/RunningTasksCard.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/RunningTasksCard/__snapshots__/RunningTasksCard.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/RunningTasksCard/__snapshots__/RunningTasksCard.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/__snapshots__/ScheduledTasksCard.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/__snapshots__/ScheduledTasksCard.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/OtherInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/OtherInfo.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/OtherInfo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/OtherInfo.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/__snapshots__/OtherInfo.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/__snapshots__/OtherInfo.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/__snapshots__/StoppedTasksCard.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/__snapshots__/StoppedTasksCard.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/__snapshots__/StoppedTasksCardTable.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/__snapshots__/StoppedTasksCardTable.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutCard/TasksDonutCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutCard/TasksDonutCard.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutCard/TasksDonutCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutCard/TasksDonutCard.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutCard/TasksDonutCard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutCard/TasksDonutCard.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutCard/__snapshots__/TasksDonutCard.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutCard/__snapshots__/TasksDonutCard.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChart.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChart.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChart.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChart.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartConstants.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/__snapshots__/TasksDonutChart.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/__snapshots__/TasksDonutChart.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/__snapshots__/TasksDonutChartHelper.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/__snapshots__/TasksDonutChartHelper.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/TasksCardsGrid.fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/TasksCardsGrid.fixtures.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/TasksCardsGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/TasksCardsGrid.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/TasksCardsGrid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/TasksCardsGrid.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/__snapshots__/TasksCardsGrid.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/__snapshots__/TasksCardsGrid.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/__snapshots__/TasksLabelsRow.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/__snapshots__/TasksLabelsRow.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/Components/TimeDropDown/TimeDropDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/Components/TimeDropDown/TimeDropDown.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/Components/TimeDropDown/TimeDropDown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/Components/TimeDropDown/TimeDropDown.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/Components/TimeDropDown/__snapshots__/TimeDropDown.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/Components/TimeDropDown/__snapshots__/TimeDropDown.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/__snapshots__/TasksTimeRow.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/__snapshots__/TasksTimeRow.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardActions.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardHelper.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardPropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardPropTypes.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardReducer.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardSelectors.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/TaskDashboard.fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/TaskDashboard.fixtures.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboard.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardActions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardActions.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardHelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardHelper.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardReducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardReducer.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardSelectors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardSelectors.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboard.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboard.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboardActions.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboardActions.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboardReducer.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboardReducer.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboardSelectors.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboardSelectors.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksDashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksDashboard/index.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalSelectors.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/GenericConfirmModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/GenericConfirmModal.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalSelectors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalSelectors.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalSelectors.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalSelectors.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/index.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createBulkTaskModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createBulkTaskModal.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createTaskModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createTaskModal.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionCell.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionHeaderCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionHeaderCell.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/__test__/ActionSelectButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/__test__/ActionSelectButton.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/__test__/SelectAllAlert.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/__test__/SelectAllAlert.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionCell.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionCell.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionHeaderCell.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionHeaderCell.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ActionSelectButton.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ActionSelectButton.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/SelectAllAlert.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/SelectAllAlert.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionCell.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionCell.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionHeaderCell.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionHeaderCell.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksIndexPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksIndexPage.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTable.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTablePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.scss -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTableReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTableReducer.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/SubTasksPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/SubTasksPage.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/TasksIndexPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksIndexPage.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableHelpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableHelpers.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableReducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableReducer.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTable.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTable.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableReducer.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableReducer.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionCellFormatter.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionCellFormatter.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionNameCellFormatter.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionNameCellFormatter.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/dateCellFormmatter.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/dateCellFormmatter.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/durationCellFormmatter.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/durationCellFormmatter.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionCellFormatter.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionCellFormatter.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionHeaderCellFormatter.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionHeaderCellFormatter.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionCellFormatter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionCellFormatter.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionNameCellFormatter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionNameCellFormatter.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/dateCellFormmatter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/dateCellFormmatter.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/durationCellFormmatter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/durationCellFormmatter.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionCellFormatter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionCellFormatter.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionHeaderCellFormatter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionHeaderCellFormatter.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/actionCellFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/actionCellFormatter.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/actionNameCellFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/actionNameCellFormatter.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/dateCellFormmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/dateCellFormmatter.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/durationCellFormmatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/durationCellFormmatter.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/index.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/formatters/selectionHeaderCellFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/formatters/selectionHeaderCellFormatter.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/TasksTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/TasksTable/index.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/common/ClickConfirmation/ClickConfirmation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/common/ClickConfirmation/ClickConfirmation.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/common/ClickConfirmation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/common/ClickConfirmation/index.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/common/ToastsHelpers/ToastTypesConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/common/ToastsHelpers/ToastTypesConstants.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/common/ToastsHelpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/common/ToastsHelpers/index.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Components/common/urlHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Components/common/urlHelpers.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/ForemanTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/ForemanTasks.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/ForemanTasks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/ForemanTasks.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/ForemanTasksReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/ForemanTasksReducers.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/ForemanTasksSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/ForemanTasksSelectors.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ForemanTasksRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/ForemanTasksRouter.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ForemanTasksRouter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/ForemanTasksRouter.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ForemanTasksRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/ForemanTasksRoutes.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ForemanTasksRoutes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/ForemanTasksRoutes.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ShowTask/ShowTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/ShowTask/ShowTask.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ShowTask/__tests__/ShowTask.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/ShowTask/__tests__/ShowTask.test.js -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ShowTask/__tests__/__snapshots__/ShowTask.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/ShowTask/__tests__/__snapshots__/ShowTask.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ShowTask/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ShowTask'; 2 | -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/ShowTask/showTask.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRouter.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRouter.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRoutes.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRoutes.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/__snapshots__/ForemanTasks.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/ForemanTasks/__snapshots__/ForemanTasks.test.js.snap -------------------------------------------------------------------------------- /webpack/ForemanTasks/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ForemanTasks'; 2 | -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/common/I18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/common/I18n.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/common/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/common/helpers.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/common/urlHelpers.js: -------------------------------------------------------------------------------- 1 | export const getURIsearch = () => 'a=b'; 2 | -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/Layout/LayoutActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/Layout/LayoutActions.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/Pagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/Pagination/index.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/ToastsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/ToastsList/index.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/common/MessageBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/common/MessageBox.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/common/dates/LongDateTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/common/dates/LongDateTime.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/common/dates/RelativeDateTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/common/dates/RelativeDateTime.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/common/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/common/table.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/components/common/table/actionsHelpers/actionTypeCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/components/common/table/actionsHelpers/actionTypeCreator.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/constants.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/redux/API/APISelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/redux/API/APISelectors.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/redux/API/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/redux/API/index.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/redux/middlewares/IntervalMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/redux/middlewares/IntervalMiddleware.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/routes/common/PageLayout/PageLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/routes/common/PageLayout/PageLayout.js -------------------------------------------------------------------------------- /webpack/__mocks__/foremanReact/routes/common/PageLayout/components/ExportButton/ExportButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/__mocks__/foremanReact/routes/common/PageLayout/components/ExportButton/ExportButton.js -------------------------------------------------------------------------------- /webpack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theforeman/foreman-tasks/HEAD/webpack/index.js --------------------------------------------------------------------------------