Webhook Bulk Delivery Method

September 13, 2024 ยท View on GitHub

Send a webhook request to bulk notify users in a channel.

Usage

class CommentNotification
  bulk_deliver_by :webhook do |config|
    config.url = "https://example.org..."
    config.json = -> {
      {
        # ...
      }
    }
  end
end