finapps 0.21.5.pre → 0.21.6.pre
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/finapps/rest/user_institutions.rb +3 -3
- data/lib/finapps/rest/users.rb +4 -0
- data/lib/finapps/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb685ed971bcd7204432309b3382f464f211cb2e
|
|
4
|
+
data.tar.gz: b474358654318df0afa617b87c0f2e4c09d24f13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13c3f58c7c9d7cca43ba377d30bf4572c09d7e84c9895a79629aeb4d819464bc8af9a37ebc109ee666617a6b7614ad7538e34f4d29dcfac4ef8cc27a0f8e34a9
|
|
7
|
+
data.tar.gz: 424da4057e48fcae73aacc4f1dab4302be38753ce2d4d950e40946b7a617e927c4757de088b3bdb5afa20f0f4f1f7255a1c63405477e2375f6da8dfa28f378f6
|
|
@@ -25,7 +25,7 @@ module FinApps
|
|
|
25
25
|
logger.debug "##{__method__.to_s} => site_id: #{site_id}"
|
|
26
26
|
|
|
27
27
|
raise MissingArgumentsError.new 'Missing argument: parameters.' if parameters.blank?
|
|
28
|
-
logger.debug "##{__method__.to_s} => parameters: #{skip_sensitive_data parameters
|
|
28
|
+
logger.debug "##{__method__.to_s} => parameters: #{skip_sensitive_data parameters}"
|
|
29
29
|
|
|
30
30
|
end_point = Defaults::END_POINTS[:user_institutions_add]
|
|
31
31
|
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
|
@@ -100,7 +100,7 @@ module FinApps
|
|
|
100
100
|
logger.debug "##{__method__.to_s} => user_institution_id: #{user_institution_id}"
|
|
101
101
|
|
|
102
102
|
raise MissingArgumentsError.new 'Missing argument: parameters.' if parameters.blank?
|
|
103
|
-
logger.debug "##{__method__.to_s} => parameters: #{skip_sensitive_data parameters
|
|
103
|
+
logger.debug "##{__method__.to_s} => parameters: #{skip_sensitive_data parameters}"
|
|
104
104
|
|
|
105
105
|
end_point = Defaults::END_POINTS[:user_institutions_mfa]
|
|
106
106
|
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
|
@@ -121,7 +121,7 @@ module FinApps
|
|
|
121
121
|
logger.debug "##{__method__.to_s} => user_institution_id: #{user_institution_id}"
|
|
122
122
|
|
|
123
123
|
raise MissingArgumentsError.new 'Missing argument: parameters.' if parameters.blank?
|
|
124
|
-
logger.debug "##{__method__.to_s} => parameters: #{skip_sensitive_data parameters
|
|
124
|
+
logger.debug "##{__method__.to_s} => parameters: #{skip_sensitive_data parameters}"
|
|
125
125
|
|
|
126
126
|
end_point = Defaults::END_POINTS[:user_institutions_update]
|
|
127
127
|
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
data/lib/finapps/rest/users.rb
CHANGED
|
@@ -13,6 +13,7 @@ module FinApps
|
|
|
13
13
|
logger.debug "##{__method__.to_s} => Started"
|
|
14
14
|
|
|
15
15
|
raise MissingArgumentsError.new 'Missing argument: params.' if params.blank?
|
|
16
|
+
logger.debug "##{__method__.to_s} => params: #{skip_sensitive_data params}"
|
|
16
17
|
|
|
17
18
|
end_point = Defaults::END_POINTS[:users_create]
|
|
18
19
|
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
|
@@ -26,6 +27,8 @@ module FinApps
|
|
|
26
27
|
def update(params = {})
|
|
27
28
|
logger.debug "##{__method__.to_s} => Started"
|
|
28
29
|
|
|
30
|
+
logger.debug "##{__method__.to_s} => params: #{skip_sensitive_data params}"
|
|
31
|
+
|
|
29
32
|
path = Defaults::END_POINTS[:users_update]
|
|
30
33
|
logger.debug "##{__method__.to_s} => path: #{path}"
|
|
31
34
|
|
|
@@ -41,6 +44,7 @@ module FinApps
|
|
|
41
44
|
logger.debug "##{__method__.to_s} => Started"
|
|
42
45
|
|
|
43
46
|
raise MissingArgumentsError.new 'Missing argument: params.' if params.blank?
|
|
47
|
+
logger.debug "##{__method__.to_s} => params: #{skip_sensitive_data params}"
|
|
44
48
|
|
|
45
49
|
end_point = Defaults::END_POINTS[:users_login]
|
|
46
50
|
logger.debug "##{__method__.to_s} => end_point: #{end_point}"
|
data/lib/finapps/version.rb
CHANGED