forest_admin_agent 1.0.0.pre.beta.89 → 1.0.0.pre.beta.90
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 +4 -4
- data/lib/forest_admin_agent/routes/resources/delete.rb +1 -1
- data/lib/forest_admin_agent/routes/resources/related/dissociate_related.rb +1 -1
- data/lib/forest_admin_agent/routes/resources/store.rb +1 -1
- data/lib/forest_admin_agent/utils/schema/schema_emitter.rb +1 -1
- data/lib/forest_admin_agent/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: ae621695f9deebb0ba410f6791f9549bc0cec956a54d636c2801ed688fbf83a1
|
4
|
+
data.tar.gz: 034c2154d956922e1c1c4bb35055e986bb0632290bac0e868e830b8710d1ace4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 209de7100f34731b01703bd09034b194f3a39f65244894e4fcf19bc2be329da0f6ede35ecab2ac49be648020d354cf34860090ecec79c7bab5788603c1b78820
|
7
|
+
data.tar.gz: d11e6d45f101036ebcaadf3e04889ac8135177a9891c6516c31aa37832075e2efa9302a1cd5e1e9d066922c33210965d150604d7013fe21d0483b33246be6323
|
@@ -39,7 +39,7 @@ module ForestAdminAgent
|
|
39
39
|
condition_tree_ids = condition_tree_ids.inverse if selection_ids[:are_excluded]
|
40
40
|
|
41
41
|
@collection.schema[:fields].each_value do |field_schema|
|
42
|
-
next unless
|
42
|
+
next unless ['PolymorphicOneToOne', 'PolymorphicOneToMany'].include?(field_schema.type)
|
43
43
|
|
44
44
|
condition_tree = Nodes::ConditionTreeBranch.new(
|
45
45
|
'And',
|
@@ -34,7 +34,7 @@ module ForestAdminAgent
|
|
34
34
|
filter = get_base_foreign_filter(args)
|
35
35
|
relation = Schema.get_to_many_relation(@collection, args[:params]['relation_name'])
|
36
36
|
|
37
|
-
if
|
37
|
+
if ['OneToMany', 'PolymorphicOneToMany'].include?(relation.type)
|
38
38
|
dissociate_or_delete_one_to_many(relation, args[:params]['relation_name'], parent_id, is_delete_mode,
|
39
39
|
filter)
|
40
40
|
else
|
@@ -40,7 +40,7 @@ module ForestAdminAgent
|
|
40
40
|
def link_one_to_one_relations(args, record)
|
41
41
|
args[:params][:data][:relationships]&.map do |field, value|
|
42
42
|
schema = @collection.schema[:fields][field]
|
43
|
-
next unless
|
43
|
+
next unless ['OneToOne', 'PolymorphicOneToOne'].include?(schema.type)
|
44
44
|
|
45
45
|
id = Utils::Id.unpack_id(@collection, value['data']['id'], with_key: true)
|
46
46
|
foreign_collection = @datasource.get_collection(schema.foreign_collection)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: forest_admin_agent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.pre.beta.
|
4
|
+
version: 1.0.0.pre.beta.90
|
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: 2025-01-
|
12
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|