forest_admin_agent 1.0.0.pre.beta.89 → 1.0.0.pre.beta.91
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 +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c8b82244aee1677cc5c212e7cb166926d83b30dce799396ccbc16819d03cb62
|
4
|
+
data.tar.gz: 3fbf11eaec51c23669e93f2db4bf2827bca6a23265da96aa8cd38aafa890ff74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab96538754566c773ebac064dba18d6185949810dd1581d1ffe1f2781ceaa00bf892368e86f5c66b97feba79095a69e49d5f0e4aa4342882c1e4a90d317b6403
|
7
|
+
data.tar.gz: bc0686c9afca1392cb74e73954fd9596e610f5b0c08d6b2fd06a124b97325ac48e1d96399fe79a3d9484f02a73c1df262d652b54da29d0907ce2e7723a5fe6f6
|
@@ -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,15 +1,15 @@
|
|
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.91
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthieu
|
8
8
|
- Nicolas
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-01-
|
12
|
+
date: 2025-01-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -313,7 +313,7 @@ metadata:
|
|
313
313
|
source_code_uri: https://github.com/ForestAdmin/agent-ruby
|
314
314
|
changelog_uri: https://github.com/ForestAdmin/agent-ruby/blob/main/CHANGELOG.md
|
315
315
|
rubygems_mfa_required: 'false'
|
316
|
-
post_install_message:
|
316
|
+
post_install_message:
|
317
317
|
rdoc_options: []
|
318
318
|
require_paths:
|
319
319
|
- lib
|
@@ -328,8 +328,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
328
328
|
- !ruby/object:Gem::Version
|
329
329
|
version: 1.3.1
|
330
330
|
requirements: []
|
331
|
-
rubygems_version: 3.
|
332
|
-
signing_key:
|
331
|
+
rubygems_version: 3.4.20
|
332
|
+
signing_key:
|
333
333
|
specification_version: 4
|
334
334
|
summary: Ruby agent for Forest Admin.
|
335
335
|
test_files: []
|