forest_admin_datasource_active_record 1.0.0.pre.beta.63 → 1.0.0.pre.beta.64
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 045e8d60b23ab5557ab023f14464326e8350d433ea7aa41b8e5c67c5708dae42
|
4
|
+
data.tar.gz: 9c551753c265dfa3877c9ec45ed8e4177c89461c6dc958ca9fa0b7ceb14e4354
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a3db924169e5a4682516416239c99b8c6dcda963fbb6aadd14395153b9fc0d5dc94c69f8526bfa5b0bc90fec13f35874f355354814b7e462b866f777ebc79a9
|
7
|
+
data.tar.gz: ac8b1c91e3c2a9e1463d9d5ebae3965ecc1f1370df65213a76b4af6779156cda0bb169bbe0f5e6f9c50dda85cc9708879088de6f6b544fe425c10bfcb697624f
|
@@ -3,10 +3,11 @@ module ForestAdminDatasourceActiveRecord
|
|
3
3
|
module Relation
|
4
4
|
def associations(model, support_polymorphic_relations: false)
|
5
5
|
model.reflect_on_all_associations.select do |association|
|
6
|
+
is_valid_association = !get_class(association).nil? && !active_type?(get_class(association))
|
6
7
|
if support_polymorphic_relations
|
7
|
-
polymorphic?(association) ? true :
|
8
|
+
polymorphic?(association) ? true : is_valid_association
|
8
9
|
else
|
9
|
-
!polymorphic?(association) &&
|
10
|
+
!polymorphic?(association) && is_valid_association
|
10
11
|
end
|
11
12
|
end
|
12
13
|
end
|
@@ -16,6 +17,12 @@ module ForestAdminDatasourceActiveRecord
|
|
16
17
|
association.inverse_of&.polymorphic?
|
17
18
|
end
|
18
19
|
|
20
|
+
def get_class(association)
|
21
|
+
association.klass
|
22
|
+
rescue StandardError
|
23
|
+
nil
|
24
|
+
end
|
25
|
+
|
19
26
|
# NOTICE: Ignores ActiveType::Object association during introspection and interactions.
|
20
27
|
# See the gem documentation: https://github.com/makandra/active_type
|
21
28
|
def active_type?(model)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forest_admin_datasource_active_record
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.pre.beta.
|
4
|
+
version: 1.0.0.pre.beta.64
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthieu
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-08-
|
12
|
+
date: 2024-08-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|