web47core 3.2.3.6 → 3.2.3.8

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: a23b6ad394340f746d55ccc1d5f86b9d1a57fa1172846dae13ec7599fe257b14
4
- data.tar.gz: 3c010351f45135b3f1b6347ba1c15175723fc96724d229619afb346692afea40
3
+ metadata.gz: ca2d5269a9cd25712248931a2fe2f12fdea0e275ee52d19b97603c3b68f943ca
4
+ data.tar.gz: 818a493abc0ce567d2eba6ac4b53f52e8915a8e4a5b43ccdd2f1749e4c8032aa
5
5
  SHA512:
6
- metadata.gz: 1ac6fe45b3a881fea11c75bdd811116705311532acbdb3ab46bfcac658c5733e3275fbe649e7e3b82c58befa3a9b0b24448ff6074c99f8d33d42021d9cd2b455
7
- data.tar.gz: 1226fce1fcf7453e474af72371b886c0914766addcbb18f37ce0c04b28ac2e069c279a67943b2bf91414fe3c22e94240273a4c8424f313e7d7bb2b0e8b314bd4
6
+ metadata.gz: 2eeeb02db277e86ca1db1b15aa09ea8ccc1148e05fb189e3167e435186e4377836f224030ca3874d2472eee8b0926a40ec935c0509575d57ccd8a8ce47fa32d8
7
+ data.tar.gz: 7e486652bbb132f1aeccf0085481b743fcd93ecb6c07e3450e9ca0d98432c7dbd371b0f3c5a02a017fa43bbabd1a235e5a6da0162460ec822b8056a16eae708e
@@ -4,6 +4,9 @@
4
4
  class ErrorsController < ActionController::Base
5
5
  # No CSRF/layout/filters; keep it cheap
6
6
  def not_found
7
- head :gone # 410 Gone is used here to indicate that the resource has been intentionally and permanently removed, and clients should not expect it to be available again. This is stronger than the standard 404 Not Found, which is used when the resource may be available in the future.
7
+ if defined?(NewRelic) && defined?(NewRelic::Agent)
8
+ NewRelic::Agent.ignore_transaction
9
+ end
10
+ head :gone # 410 Gone is used here to indicate that the resource has been intentionally and permanently removed, and clients should not expect it to be available again. This is stronger than the standard 404 Not Found, which is used when the resource may be available in the future.
8
11
  end
9
12
  end
@@ -5,9 +5,9 @@
5
5
  %h4=t('.title')
6
6
  .btn-list
7
7
  - if can?(:manage, Delayed::Backend::Mongoid::Job)
8
- %a.btn.bg-warning{href: class_action_path(:destroy_all, failed_only:true), title: t('.destroy_failed'), data: {bs_toggle: :tooltip, confirm: t('.confirm_destroy_failed')} }
8
+ %a.btn.bg-warning{href: class_action_path(:destroy_all, failed_only:true), title: t('.destroy_failed'), data: {bs_toggle: :tooltip, confirm: t('.confirm_destroy_failed'), method: :delete} }
9
9
  =svg_icon(:trash, classes: %w(text-white))
10
- %a.btn.bg-danger{href: class_action_path(:destroy_all, failed_only:false), title: t('.destroy_all'), data: {bs_toggle: :tooltip, confirm: t('.confirm_destroy_all')} }
10
+ %a.btn.bg-danger{href: class_action_path(:destroy_all, failed_only:false), title: t('.destroy_all'), data: {bs_toggle: :tooltip, confirm: t('.confirm_destroy_all'), method: :delete} }
11
11
  =svg_icon(:trash, classes: %w(text-white))
12
12
  - if can?(:update, Delayed::Backend::Mongoid::Job)
13
13
  %a.btn.bg-warning{href: class_action_path(:resubmit_all, failed_only:true), title: t('.resubmit_failed'), data: {bs_toggle: :tooltip, confirm: t('.confirm_resubmit_failed')} }
@@ -87,6 +87,12 @@ en:
87
87
  cron_servers: outline/server
88
88
  cron_tabs: outline/calendar-clock
89
89
  accounts: outline/buildings
90
+ system_configuration: outline/adjustments-horizontal
91
+ sso_servers: outline/login-2
92
+ edit: outline/edit
93
+ team: outline/users-group
94
+ logout: outline/logout-2
95
+
90
96
  system_configurations:
91
97
  show:
92
98
  title: "%{name} System Configuration"
@@ -1,10 +1,6 @@
1
- # frozen_string_literal: true
2
-
3
- require 'simplecov'
1
+ require "simplecov"
4
2
  require 'simplecov_lcov_formatter'
5
3
 
6
- # Load up the files in the workspace and merge or collate them together.
7
- # This should kick out a single coverage file out
8
4
  SimpleCov::Formatter::LcovFormatter.config do |c|
9
5
  c.single_report_path = 'coverage/final.lcov'
10
6
  c.report_with_single_file = true
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Web47core
4
- VERSION = '3.2.3.6'
4
+ VERSION = '3.2.3.8'
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.6
4
+ version: 3.2.3.8
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-09-07 00:00:00.000000000 Z
11
+ date: 2025-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel