web47core 3.2.15 → 3.2.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed30f86d903369f96318efc3bce1d872e6ce1765f03a5aec392a8fd99bb9d4e4
4
- data.tar.gz: d954d336d4d4477894519a51faeaa6dc7e971d6ec841a2488cf29d0524d1abca
3
+ metadata.gz: 3b7ec1335fd6b59f65fc8e7ea82aba0bfb4893416d3e9c4ff27a9cac006aaaa7
4
+ data.tar.gz: 70e6f61629155390bf3b8fdfacf88b5cbc3f73cd330b51a563e059ee10b6cabe
5
5
  SHA512:
6
- metadata.gz: d79f0a17580585fe316ef7ac4d4a15d01c19973d58c51426e8b4786b03ef6d3f52c936ad69573c9db70ae2e7554658ff59152ec96be5bf988aac749e62c345c4
7
- data.tar.gz: 4cfbfcd60348decd2f9c814d090688d70654cbaae664ddf9a4e376e24cdcaca095e01f8804c5e62061b52056d2d6612381582b15136b0ace8afe47a026feb474
6
+ metadata.gz: 45e10f6cf040b5d4fad26b8ca69b9373be8921f4a382d6c615c2b9cbb63bf40b0a97d55f70d992d268eba8508591120b8914ea954fc6be3490f4f7b3e0ee2da9
7
+ data.tar.gz: 1ec288fb6611a53f2389192965137f7c973092aecc78f72a4e90d100b1868d8a16f2b0133d6d155200860588bd58e181d0237bbddae44e669edc67b81163a916
@@ -11,6 +11,31 @@ module CoreCardNavItemsHelper
11
11
  end
12
12
  end
13
13
 
14
+ # @abstract Link to the jobs icon
15
+ # @return HTML - The HTML for the given tag
16
+ def jobs_nav_link(obj, path, title: 'Jobs')
17
+ return unless can?(:view, obj)
18
+
19
+ card_nav_item_link(path, title, 'stack-overflow')
20
+ end
21
+
22
+ # @abstract Link to the jobs icon
23
+ # @return HTML - The HTML for the given tag
24
+ def current_job_nav_link(obj, path, title: 'Current Job')
25
+ return unless can?(:view, obj)
26
+
27
+ card_nav_item_link(path, title, 'run')
28
+ end
29
+
30
+ # @abstract Link to the jobs icon
31
+ # @return HTML - The HTML for the given tag
32
+ def start_job_nav_link(obj, path, title: 'Start', confirm: nil)
33
+ return unless can?(:view, obj)
34
+
35
+ confirm ||= "Are you sure you want to restart this #{obj.class_title} job?"
36
+ card_nav_item_link(path, title, 'play', btn_class: 'btn-success', confirm: confirm, method: :post)
37
+ end
38
+
14
39
  # @abstract Link to restart, replay a given object
15
40
  # @param [Object] obj - The object to operate on, for permission checks
16
41
  # @param [String] path - The path/URL for the action
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Web47core
4
- VERSION = '3.2.15'
4
+ VERSION = '3.2.16'
5
5
  end
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: 3.2.15
4
+ version: 3.2.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Schroeder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-16 00:00:00.000000000 Z
11
+ date: 2025-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel