File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ gem 'docusign_esign', '~> 4.0.0.rc1'
74
74
gem 'docusign_maestro' , '~> 2.0.0.rc1'
75
75
gem 'docusign_monitor' , '~> 1.2.0'
76
76
gem 'docusign_rooms' , '~> 1.3.0'
77
+ gem 'docusign_webforms' , '~> 1.0.0'
77
78
gem 'omniauth-oauth2' , '~> 1.8.0'
78
79
gem 'omniauth-rails_csrf_protection'
79
80
Original file line number Diff line number Diff line change 141
141
json (~> 2.1 , >= 2.1.0 )
142
142
jwt (~> 2.2 , >= 2.2.1 )
143
143
typhoeus (~> 1.0 , >= 1.0.1 )
144
+ docusign_webforms (1.0.0 )
145
+ addressable (~> 2.7 , >= 2.7.0 )
146
+ json (~> 2.1 , >= 2.1.0 )
147
+ jwt (~> 2.2 , >= 2.2.1 )
148
+ typhoeus (~> 1.0 , >= 1.0.1 )
144
149
drb (2.2.1 )
145
150
erubi (1.13.0 )
146
151
ethon (0.16.0 )
@@ -390,6 +395,7 @@ DEPENDENCIES
390
395
docusign_maestro (~> 2.0.0.rc1 )
391
396
docusign_monitor (~> 1.2.0 )
392
397
docusign_rooms (~> 1.3.0 )
398
+ docusign_webforms (~> 1.0.0 )
393
399
jbuilder (~> 2.11.5 )
394
400
listen (~> 3.9.0 )
395
401
matrix (~> 0.4.2 )
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ def check_auth(api)
92
92
def handle_error ( e )
93
93
error = JSON . parse e . response_body
94
94
@error_code = e . code || error [ 'errorCode' ]
95
- @error_message = error [ 'error_description' ] || error [ 'message' ]
95
+ @error_message = error [ 'error_description' ] || error [ 'message' ] || error [ 'error' ]
96
96
render 'ds_common/error'
97
97
end
98
98
You can’t perform that action at this time.
0 commit comments