mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
a2871cd747
* Add administrative webhooks * Fix error when webhook is deleted before delivery worker runs
13 lines
217 B
Ruby
13 lines
217 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BaseService
|
|
include ActionView::Helpers::TextHelper
|
|
include ActionView::Helpers::SanitizeHelper
|
|
|
|
include RoutingHelper
|
|
|
|
def call(*)
|
|
raise NotImplementedError
|
|
end
|
|
end
|