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'
7474gem 'docusign_maestro' , '~> 2.0.0.rc1'
7575gem 'docusign_monitor' , '~> 1.2.0'
7676gem 'docusign_rooms' , '~> 1.3.0'
77+ gem 'docusign_webforms' , '~> 1.0.0'
7778gem 'omniauth-oauth2' , '~> 1.8.0'
7879gem 'omniauth-rails_csrf_protection'
7980
Original file line number Diff line number Diff line change 141141 json (~> 2.1 , >= 2.1.0 )
142142 jwt (~> 2.2 , >= 2.2.1 )
143143 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 )
144149 drb (2.2.1 )
145150 erubi (1.13.0 )
146151 ethon (0.16.0 )
@@ -390,6 +395,7 @@ DEPENDENCIES
390395 docusign_maestro (~> 2.0.0.rc1 )
391396 docusign_monitor (~> 1.2.0 )
392397 docusign_rooms (~> 1.3.0 )
398+ docusign_webforms (~> 1.0.0 )
393399 jbuilder (~> 2.11.5 )
394400 listen (~> 3.9.0 )
395401 matrix (~> 0.4.2 )
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ def check_auth(api)
9292 def handle_error ( e )
9393 error = JSON . parse e . response_body
9494 @error_code = e . code || error [ 'errorCode' ]
95- @error_message = error [ 'error_description' ] || error [ 'message' ]
95+ @error_message = error [ 'error_description' ] || error [ 'message' ] || error [ 'error' ]
9696 render 'ds_common/error'
9797 end
9898
You can’t perform that action at this time.
0 commit comments