web47core 3.2.3.32 → 3.2.3.34

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: 802701ca7fd3618efc7bcf10c8c9f9299a9d75cead03284879539b931fd0d2ee
4
- data.tar.gz: 1c2df41fec8fa2391ad64399dc481bb3789b9657893be8d7ba29189aa20c4719
3
+ metadata.gz: 2478fbae611a8c7a31fde7e583b7a70cabfe2e8454b7edd76441b937223c3874
4
+ data.tar.gz: 6d98241c34fbd65429987484c22450d4bcad11fb8a4353a6cc6ba2dfb5dd2d93
5
5
  SHA512:
6
- metadata.gz: 51977b350f0894bcff77230015b88303f0e0a035ab39dde554728369dd027b308cbe959cd4863219daa26306460ef2965229c9619514babad59634973f05a7b2
7
- data.tar.gz: ad4e22759a3bc3c7fce76670af44c7e715c46c4b5d527e7b45daa16b29a91cfc5d9798d76b66e40424710059cc8844c740f29b2b039a396238f9eba816dfb22f
6
+ metadata.gz: 340171b4a21e2f4ad5a0ff9066284b9f914d56e31cbe25e139ee1f2e5f0181eef8f3ee4545e4a1c54712619543304cf289d74ae1c327ef0229317cef9814aa7f
7
+ data.tar.gz: 37c38ebad9f33e6511309bc2d03a17bd3ca9ad0d727195029d1945af68bec45d147828bd7bfceec3ad0b1751a37e97b151d60d134da081a5b886c7e91b445f6f
@@ -42,10 +42,10 @@ class CardNavBuilder
42
42
  item_link(path, title, icon_name, method: method)
43
43
  end
44
44
 
45
- def edit_link(path, title: 'Edit')
45
+ def edit_link(path, title: 'Edit', icon_name: :edit)
46
46
  return unless can?(:edit, @obj)
47
47
 
48
- item_link(path, title, :edit)
48
+ item_link(path, title, icon_name)
49
49
  end
50
50
 
51
51
  def create_link(path, title: 'Add', icon_name: :add)
@@ -92,4 +92,4 @@ class CardNavBuilder
92
92
  @view_context.safe_join(parts)
93
93
  end
94
94
  end
95
- end
95
+ end
@@ -34,6 +34,7 @@ module CoreSystemConfiguration
34
34
  field :base_url, type: String
35
35
  field :cdn_url, type: String
36
36
  field :asset_cdn_url, type: String
37
+ field :acceptable_use_policy, type: String
37
38
  # Time Zone Support
38
39
  field :default_time_zone, type: String, default: 'US/Eastern'
39
40
  # TTLs
@@ -46,6 +47,7 @@ module CoreSystemConfiguration
46
47
  validates :base_url, http_url: true
47
48
  validates :cdn_url, http_url: true
48
49
  validates :asset_cdn_url, http_url: true
50
+ validates :acceptable_use_policy, http_url: true
49
51
  end
50
52
  base.extend ClassMethods
51
53
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Web47core
4
- VERSION = '3.2.3.32'
4
+ VERSION = '3.2.3.34'
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.3.32
4
+ version: 3.2.3.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Schroeder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-03 00:00:00.000000000 Z
11
+ date: 2026-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel