avo 2.37.2 → 2.38.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of avo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/app/components/avo/resource_component.rb +5 -3
- data/app/controllers/avo/actions_controller.rb +1 -1
- data/lib/avo/base_action.rb +6 -3
- data/lib/avo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a558c52541dd75426ebf2d447ec7b423e5301c33cf8abfd0dbda7d7cdab6b485
|
4
|
+
data.tar.gz: 551a3646a7a41e9563bd3dbe04e88ef3b4fceb9705a232e7d410225d7eec55c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92737e15eb5e98a99b55a6c3ae8ba3ed6f332ed79dd0729fcbb977663fa9e1e76b54403a60375870786779f19f9bb82049d21f5a8c40e1e17452a5ec7b7e9e80
|
7
|
+
data.tar.gz: 42e16af631e5709b72b5a28e1a7702595f82dac447a61d923e4c26bdc8c26cc25f1d8453ba5d3d74dffe074dccdc5a59f94909e6a3987afeb2303baf23fc4280
|
data/Gemfile.lock
CHANGED
@@ -151,9 +151,11 @@ class Avo::ResourceComponent < Avo::BaseComponent
|
|
151
151
|
|
152
152
|
inverse_of = current_reflection.inverse_of
|
153
153
|
|
154
|
-
if inverse_of.blank?
|
155
|
-
|
156
|
-
|
154
|
+
if inverse_of.blank? && Rails.env.development?
|
155
|
+
puts "WARNING! Avo uses the 'inverse_of' option to determine the inverse association and figure out if the association permit or not detaching."
|
156
|
+
# Ex: Please configure the 'inverse_of' option for the ':users' association on the 'Project' model.
|
157
|
+
puts "Please configure the 'inverse_of' option for the '#{current_reflection.macro} :#{current_reflection.name}' association on the '#{current_reflection.active_record.name}' model."
|
158
|
+
puts "Otherwise the detach button will be visible by default.\n\n"
|
157
159
|
end
|
158
160
|
|
159
161
|
inverse_of
|
@@ -90,7 +90,7 @@ module Avo
|
|
90
90
|
path = instance_eval(&path)
|
91
91
|
end
|
92
92
|
|
93
|
-
redirect_to path
|
93
|
+
redirect_to path, **{allow_other_host: response[:allow_other_host], status: response[:status]}.compact
|
94
94
|
elsif response[:type] == :reload
|
95
95
|
redirect_back fallback_location: resources_path(resource: @resource)
|
96
96
|
end
|
data/lib/avo/base_action.rb
CHANGED
@@ -14,6 +14,7 @@ module Avo
|
|
14
14
|
class_attribute :standalone, default: false
|
15
15
|
class_attribute :visible
|
16
16
|
class_attribute :may_download_file, default: false
|
17
|
+
class_attribute :turbo
|
17
18
|
|
18
19
|
attr_accessor :response
|
19
20
|
attr_accessor :model
|
@@ -35,9 +36,9 @@ module Avo
|
|
35
36
|
def form_data_attributes
|
36
37
|
# We can't respond with a file download from Turbo se we disable it on the form
|
37
38
|
if may_download_file
|
38
|
-
{turbo: false, remote: false, action_target: :form}
|
39
|
+
{turbo: turbo || false, remote: false, action_target: :form}
|
39
40
|
else
|
40
|
-
{turbo_frame: :_top, action_target: :form}
|
41
|
+
{turbo: turbo, turbo_frame: :_top, action_target: :form}.compact
|
41
42
|
end
|
42
43
|
end
|
43
44
|
|
@@ -196,8 +197,10 @@ module Avo
|
|
196
197
|
self
|
197
198
|
end
|
198
199
|
|
199
|
-
def redirect_to(path = nil, &block)
|
200
|
+
def redirect_to(path = nil, allow_other_host: nil, status: nil, &block)
|
200
201
|
response[:type] = :redirect
|
202
|
+
response[:allow_other_host] = allow_other_host
|
203
|
+
response[:status] = status
|
201
204
|
response[:path] = if block.present?
|
202
205
|
block
|
203
206
|
else
|
data/lib/avo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: avo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrian Marin
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-08-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|