19 lines
277 B
Ruby
Raw Normal View History

2025-01-20 16:50:51 +01:00
# frozen_string_literal: true
module DiscourseRewind
module Action
class BaseReport < Service::ActionBase
option :user
option :date
def call
raise NotImplementedError
end
def self.enabled?
true
end
end
end
end