Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 350 Bytes

bluesky.md

File metadata and controls

21 lines (18 loc) · 350 Bytes

Bluesky Bulk Delivery Method

Create a Bluesky post.

Usage

class CommentNotification
  bulk_deliver_by :bluesky do |config|
    config.identifier = "username"
    config.password = "password"
    config.json = -> {
      {
        text: "Hello world!",
        createdAt: Time.current.iso8601
        # ...
      }
    }
  end
end