wolf_core 0.1.59 → 0.1.60
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: d1c77334a21f485565f2ff7dd3f433a1f8695a6379f4896798892ef4847f2bcf
|
4
|
+
data.tar.gz: 99a37788f26c5448c7fe01bf86f73f3dbc44de8b530e24f814fe002f311d526e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec84c7c876e3526b0012273e5fc48ffcd224e229e1aa8b70c75b19ba9b6637029a06c1116b92a00a4681554f6b943a3e78915edee9e45d95289d7802ac277947
|
7
|
+
data.tar.gz: cbf4a6e78feed1f250f7389585247798ea9398f6e14fa2fa6b6ecadd9186a8fdf25be898d4b0dc4f16ad08c481f42a552b003e6f565e8d18c143d20234362bb6
|
@@ -53,8 +53,7 @@ module WolfCore
|
|
53
53
|
salesforce_access_token: salesforce_access_token,
|
54
54
|
query: { calltype: 'getRecord', RecordId: record_id }
|
55
55
|
)
|
56
|
-
log_object
|
57
|
-
log_object foreign_object
|
56
|
+
log_object foreign_object, title: 'foreign object is'
|
58
57
|
foreign_object
|
59
58
|
end
|
60
59
|
|
@@ -1,6 +1,7 @@
|
|
1
1
|
module WolfCore
|
2
2
|
module FkmOperations
|
3
3
|
include WolfCore::HttpOperations
|
4
|
+
include WolfCore::ExceptionOperations
|
4
5
|
include WolfCore::LoggingUtils
|
5
6
|
|
6
7
|
def get_foreign_key_destination_id(tenant:, source:, source_id:, destination:)
|
@@ -30,6 +31,11 @@ module WolfCore
|
|
30
31
|
end
|
31
32
|
|
32
33
|
def create_foreign_key(tenant:, source:, source_id:, destination:, destination_id:)
|
34
|
+
raise_service_error('tenant is required to create a foreign key') if tenant.blank?
|
35
|
+
raise_service_error('source is required to create a foreign key') if source.blank?
|
36
|
+
raise_service_error('source_id is required to create a foreign key') if source_id.blank?
|
37
|
+
raise_service_error('destination is required to create a foreign key') if destination.blank?
|
38
|
+
raise_service_error('destination_id is required to create a foreign key') if destination_id.blank?
|
33
39
|
response = http_post(
|
34
40
|
url: "#{ENV['FKM_URL']}/Prod/create",
|
35
41
|
body: {
|
data/lib/wolf_core/version.rb
CHANGED