pg_rails 7.6.22.pre.1 → 7.6.22.pre.2

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: 5b76399429a5de2afde862c553eeeb0cd141ae94e652ff063a7ea2e03a861131
4
- data.tar.gz: 4cab26aca4226a0333dd69fb264683315cb12d283f173e9593530b6f5f03174f
3
+ metadata.gz: 82557632c412afc306681cc0a0b939032d6085ae330754261bb83a7ecee70703
4
+ data.tar.gz: 57921d4c26b686254a7fe02dd2e488a05ee6948987ed1166de7ef1a1543c6c6f
5
5
  SHA512:
6
- metadata.gz: e50ff4f64cd0106777f6658335df10db9b1c23bba3a8310a80571e2899d7dc51a14bc1b7679be27654801e3d2d5dc357f27b574caa1c66b3fd842ca1ece1d7ae
7
- data.tar.gz: e5f551aa8b95bfae7131e61b3045f8157c92a0ab55cebea2ec7d203cf948f7b7ff535d6f0f3d6fe233f097d0de266380890b0f2a660e8ad53a2522094080d943
6
+ metadata.gz: deb3aefaabfbf76b6be7efd0093b456df0f1e25f685428bfce6481a5c49e14bf2248eb44cf216eb9b8e7aeac85652da048d1b402ff75c65e833c4b995bc39fb1
7
+ data.tar.gz: f4f5d38259d76db1d18dbf5a5abf18f1b596ae26ec9d8eceee7d58c4742407dd4dcc0aba2759a72e975607484dfb18be9524c3299c5416b2ca66b3f4278172f0
@@ -2,6 +2,11 @@ module Users
2
2
  class InvitationsController < Devise::InvitationsController
3
3
  include PgEngine::TenantHelper
4
4
 
5
+ before_action only: :new do
6
+ # Porque el link for new no tiene turbo-frame="_top"
7
+ @turbo_page_requires_reload = true
8
+ end
9
+
5
10
  before_action only: %i[new create] do
6
11
  set_tenant_from_params_or_fail!
7
12
 
@@ -12,9 +17,6 @@ module Users
12
17
  add_breadcrumb UserAccount.nombre_plural
13
18
  add_breadcrumb UserAccount.new.decorate.submit_default_value
14
19
 
15
- # Porque el link for new no tiene turbo-frame="_top"
16
- @turbo_page_requires_reload = true
17
-
18
20
  @no_main_frame = true
19
21
  @container_class = 'container border pb-3 my-3'
20
22
  @container_style = 'max-width: 50em; xborder-left: 1px solid grey'
@@ -9,7 +9,22 @@ module PgEngine
9
9
  before_action { @email_object = params[:email_object] }
10
10
 
11
11
  before_action do
12
- path = Rails.application.assets.find_asset(logo_footer_name).filename
12
+ if Rails.application.assets.present?
13
+ # Can compile assets
14
+ path = Rails.application.assets.find_asset(logo_footer_name).filename
15
+ else
16
+ # Can't compile assets, so must be precompiled
17
+ name = Rails.application.assets_manifest.files.select do |_k, v|
18
+ v['logical_path'].include?(logo_footer_name)
19
+ end
20
+ name = name.keys.first
21
+ if name.nil?
22
+ raise "Asset was not precompiled: #{logo_footer_name}"
23
+ end
24
+
25
+ path = Rails.public_path.join('assets', name)
26
+ end
27
+
13
28
  png_data = File.read(path)
14
29
  attachments.inline[logo_footer_name] = png_data
15
30
  @footer_image_src = attachments[logo_footer_name].url
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PgRails
4
- VERSION = '7.6.22-1'
4
+ VERSION = '7.6.22-2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.6.22.pre.1
4
+ version: 7.6.22.pre.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martín Rosso
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-08 00:00:00.000000000 Z
11
+ date: 2024-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails