Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 285 Bytes

webhook.md

File metadata and controls

18 lines (15 loc) · 285 Bytes

Webhook Bulk Delivery Method

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

Usage

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