Skip to content
This repository was archived by the owner on Oct 17, 2023. It is now read-only.

Commit 56647ba

Browse files
committed
Adjust remove, cancel, and remind signature request methods for string interpolation
1 parent 28069a3 commit 56647ba

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/hello_sign/api/signature_request.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def bulk_send_with_template(opts)
341341
# :email_address: 'john@example.com'
342342
# )
343343
def remind_signature_request(opts)
344-
HelloSign::Resource::SignatureRequest.new post('/signature_request/remind/#{opts[:signature_request_id]}', body: opts)
344+
HelloSign::Resource::SignatureRequest.new post("/signature_request/remind/#{opts[:signature_request_id]}", body: opts)
345345
end
346346

347347
# Cancels an incomplete SignatureRequest.
@@ -352,7 +352,7 @@ def remind_signature_request(opts)
352352
# @example
353353
# @client.cancel_signature_request signature_request_id: '75cdf7dc8b323d43b347e4a3614d1f822bd09491'
354354
def cancel_signature_request(opts)
355-
post('/signature_request/cancel/#{opts[:signature_request_id]}', body: opts)
355+
post("/signature_request/cancel/#{opts[:signature_request_id]}", body: opts)
356356
end
357357

358358
# Removes your access to a completed a SignatureRequest.
@@ -363,7 +363,7 @@ def cancel_signature_request(opts)
363363
# @example
364364
# @client.remove_signature_request signature_request_id: '75cdf7dc8b323d43b347e4a3614d1f822bd09491'
365365
def remove_signature_request(opts)
366-
post('/signature_request/remove/#{opts[:signature_request_id]}', body: opts)
366+
post("/signature_request/remove/#{opts[:signature_request_id]}", body: opts)
367367
end
368368

369369
# Downloads a copy of the SignatureRequest documents.

0 commit comments

Comments
 (0)