mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-09-10 02:32:02 +09:00
df76a227dc
First open source release of Campfire 🎉
6 lines
110 B
Ruby
6 lines
110 B
Ruby
class Bot::WebhookJob < ApplicationJob
|
|
def perform(bot, message)
|
|
bot.deliver_webhook(message)
|
|
end
|
|
end
|