web47core 2.2.18 → 2.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 302a4213c8d1a96ce5b9a7377e2b63311b31fa3b92de53a027eb66c3fcc58c7d
|
|
4
|
+
data.tar.gz: a89fd4db5fc2cc4a4e6aad3278ce5a32021b09ad26cdace98c11a293bcf886e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72098c531d724e8e1e0f346c33627b45c3a1dbfd317e9e5457fe8656f1a1cc0f6293f3174fa7bdb2173e598202cb16e2adbdaab46288e60c91de1ed4fe9a8ee3
|
|
7
|
+
data.tar.gz: 8268b3b9f60f9cfdab8de13634fc18c52f266a2b25967444d35d86b663a37f87c42ad06d409fc5c88facfa26bf65cfe0454af63a7bea8096fbaf49177df2bbc3
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
data: {confirm: t('confirm_destroy_all')}}
|
|
18
18
|
%i.material-icons
|
|
19
19
|
delete
|
|
20
|
-
%a.btn.yellow.darken-3{href: class_action_path(:
|
|
20
|
+
%a.btn.yellow.darken-3{href: class_action_path(:resubmit_all, failed_only:true),
|
|
21
21
|
title: t('.resubmit_failed'),
|
|
22
22
|
data: {confirm: t('.confirm_resubmit_failed')}}
|
|
23
23
|
%i.material-icons
|
|
24
24
|
restore
|
|
25
|
-
%a.btn.red{href: class_action_path(:
|
|
25
|
+
%a.btn.red{href: class_action_path(:resubmit_all, failed_only:false),
|
|
26
26
|
title: t('.resubmit_all'),
|
|
27
27
|
data: {confirm: t('.confirm_resubmit_all')}}
|
|
28
28
|
%i.material-icons
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
%tbody
|
|
41
41
|
- @delayed_jobs.each do |delayed_job|
|
|
42
42
|
%tr
|
|
43
|
-
%td=current_user.local_time(delayed_job.
|
|
43
|
+
%td=current_user.local_time(delayed_job.run_at)
|
|
44
44
|
%td.name=link_to(delayed_job.display_name, model_path(delayed_job))
|
|
45
45
|
%td=delayed_job.priority
|
|
46
46
|
%td=delayed_job.status_description
|
|
@@ -57,4 +57,4 @@
|
|
|
57
57
|
.card-action
|
|
58
58
|
.row
|
|
59
59
|
.col.s6.center-align= delete_button_tag(@delayed_job, model_path(@delayed_job))
|
|
60
|
-
.col.s6.center-align= replay_button_tag(@delayed_job,
|
|
60
|
+
.col.s6.center-align= replay_button_tag(@delayed_job, model_action_path(@delayed_job, :resubmit))
|
|
@@ -46,7 +46,7 @@ module CoreDelayedJobsController
|
|
|
46
46
|
|
|
47
47
|
job.resubmit
|
|
48
48
|
end
|
|
49
|
-
flash.now[:info] = 'All
|
|
49
|
+
flash.now[:info] = 'All Delayed Jobs has been resubmitted'
|
|
50
50
|
redirect_to index_path
|
|
51
51
|
rescue StandardError => error
|
|
52
52
|
log_controller_error error, true
|
data/lib/web47core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: web47core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.19
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Schroeder
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-10-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel
|