Create a Bluesky post.
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