RUBYCRITIC
class WebhookWorker - WebhookWorker has no descriptive comment
include Sidekiq::Worker
def perform(url, payload) - WebhookWorker#perform doesn't depend on instance state (maybe move it to another class?)
Faraday.post(
url,
payload,
{'Content-Type': 'application/json'}
)
end
end