widgets_api_client 1.0.0 → 1.0.1
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/services/authentication_service.rb +0 -2
- data/lib/services/user_service.rb +0 -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: 9dc8c7f5d8630468485c6518209a841f13cec174
|
4
|
+
data.tar.gz: 6cd9bc9678f04df2cbfd865daebe02344ae9c1be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5297223cfe3c3ce7666a3687f1a5998e06292285771b23069c59f7566c2876b49d26857a45f041d5dccb1e2d9e922d4509771090e601a6ae536277a4bd925fab
|
7
|
+
data.tar.gz: c81493f45943dcc0241c456a673b7f3ab68521b99f9b439b99fdc177c12548b9dc73357da248b3912c6e9988cae44edbae7551f2e0df7331bf6f105452969edd
|
@@ -15,7 +15,6 @@ class AuthenticationService
|
|
15
15
|
#
|
16
16
|
def self.create_authentication(auth_data)
|
17
17
|
auth_payload = Authentication.get_payload_with_client_info(auth_data)
|
18
|
-
puts auth_payload
|
19
18
|
RestClient::Request.execute(method: :post,
|
20
19
|
url: ApplicationConfig.get_url('create_authentication_path'),
|
21
20
|
payload: auth_payload,
|
@@ -49,7 +48,6 @@ class AuthenticationService
|
|
49
48
|
#
|
50
49
|
def self.revoke_authentication_token(auth_data, bearer_token)
|
51
50
|
auth_payload = Authentication.get_payload(auth_data)
|
52
|
-
puts auth_payload
|
53
51
|
RestClient::Request.execute(method: :post,
|
54
52
|
url: ApplicationConfig.get_url('revoke_authentication_path'),
|
55
53
|
payload: auth_payload,
|
@@ -15,7 +15,6 @@ class UserService
|
|
15
15
|
#
|
16
16
|
def self.create_user(user)
|
17
17
|
create_user_payload = User.get_payload_with_client_info(user)
|
18
|
-
puts create_user_payload
|
19
18
|
RestClient::Request.execute(method: :post,
|
20
19
|
url: ApplicationConfig.get_url('create_user_path'),
|
21
20
|
payload: create_user_payload,
|