pull/382/head
Pete Matsyburka 1 year ago
parent 2542f26d96
commit bc40a15de1

@ -5,7 +5,7 @@ class SendFormCompletedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -5,7 +5,7 @@ class SendFormDeclinedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -5,7 +5,7 @@ class SendFormStartedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -5,7 +5,7 @@ class SendFormViewedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -5,7 +5,7 @@ class SendSubmissionArchivedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -5,7 +5,7 @@ class SendSubmissionCompletedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -5,7 +5,7 @@ class SendSubmissionCreatedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -5,7 +5,7 @@ class SendTemplateCreatedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -5,7 +5,7 @@ class SendTemplateUpdatedWebhookRequestJob
sidekiq_options queue: :webhooks sidekiq_options queue: :webhooks
USER_AGENT = 'DocuSeal.co Webhook' USER_AGENT = 'DocuSeal.com Webhook'
MAX_ATTEMPTS = 10 MAX_ATTEMPTS = 10

@ -33,7 +33,7 @@ RSpec.describe SendFormCompletedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -50,7 +50,7 @@ RSpec.describe SendFormCompletedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

@ -33,7 +33,7 @@ RSpec.describe SendFormDeclinedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -50,7 +50,7 @@ RSpec.describe SendFormDeclinedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

@ -33,7 +33,7 @@ RSpec.describe SendFormStartedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -50,7 +50,7 @@ RSpec.describe SendFormStartedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

@ -33,7 +33,7 @@ RSpec.describe SendFormViewedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -50,7 +50,7 @@ RSpec.describe SendFormViewedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

@ -30,7 +30,7 @@ RSpec.describe SendSubmissionArchivedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -47,7 +47,7 @@ RSpec.describe SendSubmissionArchivedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

@ -30,7 +30,7 @@ RSpec.describe SendSubmissionCompletedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -47,7 +47,7 @@ RSpec.describe SendSubmissionCompletedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

@ -30,7 +30,7 @@ RSpec.describe SendSubmissionCreatedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -47,7 +47,7 @@ RSpec.describe SendSubmissionCreatedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

@ -29,7 +29,7 @@ RSpec.describe SendTemplateCreatedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -46,7 +46,7 @@ RSpec.describe SendTemplateCreatedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

@ -29,7 +29,7 @@ RSpec.describe SendTemplateUpdatedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook' 'User-Agent' => 'DocuSeal.com Webhook'
} }
).once ).once
end end
@ -46,7 +46,7 @@ RSpec.describe SendTemplateUpdatedWebhookRequestJob do
}.deep_stringify_keys), }.deep_stringify_keys),
headers: { headers: {
'Content-Type' => 'application/json', 'Content-Type' => 'application/json',
'User-Agent' => 'DocuSeal.co Webhook', 'User-Agent' => 'DocuSeal.com Webhook',
'X-Secret-Header' => 'secret_value' 'X-Secret-Header' => 'secret_value'
} }
).once ).once

Loading…
Cancel
Save