web47core 3.2.3.17 → 3.2.3.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: 8aeda1bb816c71062bed0c04345274790bed2bb1d7f379407efc2097c6c16293
4
- data.tar.gz: 66f84a16916557df8eed33c4956c47ad92df47f11d1bd16d90f3f2945dcf6429
3
+ metadata.gz: b8c29beafdaac61eeb927fb4252c31ab4b4a54af7d9c0215963fea7dade02341
4
+ data.tar.gz: dfb353a8fd04ee44f07ef3a28b67cdda8b1067ac69de02a3734cd69574a66b51
5
5
  SHA512:
6
- metadata.gz: 640b515e5e7f3cc13ac93b41c78b302cefe2023e2fa7c0f79bdf81e49eb721201231d140ad273236a5395c14ac46290638bfdd881d8bc76313872b222b2e4d8b
7
- data.tar.gz: 8e76f708a1fc1c74c0b656b841b290f75921adb641bdb8a92aa7d60b462afa20450ff11a103a80fc88a094936c08d109ed0b143d488860f1d1c92e6b5067c829
6
+ metadata.gz: f649a6e4cc61b8faf0972674a782a3299f0c91910a8747def6c1a0ea8816d950c3207c39ff78eb3401115ba1419307a715ffa1ed175c062c90f621cb4b3de714
7
+ data.tar.gz: 4448b98e2006a48eff039773655792344969a12288d6181b487bf490837997635730f52260bdd74562baec1570aa249170b66c2d95e80f38b43add6aa055c363
@@ -256,11 +256,11 @@ class Notification
256
256
 
257
257
  #
258
258
  # Only send a message if this message is associated with an account
259
- # and that has an active smtp configuration
259
+ # and that has an active smtp configuration,
260
260
  # otherwise send it to support for the environment
261
261
  #
262
262
  def notify_failure(error)
263
- if account.nil? || !account.fetch_or_build_smtp_configuration.use?
263
+ if account.nil? || !account.fetch_smtp_configuration.use?
264
264
  error_email = EmailNotification.new
265
265
  params = { company_name: SystemConfiguration.company_name,
266
266
  error_message: error.message,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Web47core
4
- VERSION = '3.2.3.17'
4
+ VERSION = '3.2.3.19'
5
5
  end
data/lib/web47core.rb CHANGED
@@ -37,7 +37,6 @@ require 'app/models/delayed/jobs/metric'
37
37
  require 'app/models/delayed/jobs/run'
38
38
  require 'app/models/delayed/jobs/worker'
39
39
 
40
- require 'app/models/api_token'
41
40
  require 'app/models/notification'
42
41
  require 'app/models/template'
43
42
  require 'app/models/email_notification'
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.17
4
+ version: 3.2.3.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: 2025-11-12 00:00:00.000000000 Z
11
+ date: 2025-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -6571,7 +6571,6 @@ files:
6571
6571
  - lib/app/jobs/cron/trim_delayed_job_workers.rb
6572
6572
  - lib/app/jobs/cron/trim_failed_delayed_jobs.rb
6573
6573
  - lib/app/jobs/cron/trim_notifications.rb
6574
- - lib/app/models/api_token.rb
6575
6574
  - lib/app/models/audit_log.rb
6576
6575
  - lib/app/models/command_job.rb
6577
6576
  - lib/app/models/command_job_log.rb
@@ -1,9 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- #
4
- # A specific API token to be used as part of a collection of tokens
5
- #
6
- class ApiToken
7
- include StandardModel
8
- include ApiTokenable
9
- end