17 lines
251 B
Ruby
Raw Normal View History

2024-12-12 17:45:22 -03:00
# frozen_string_literal: true
module DiscourseRewind
2024-12-13 17:00:17 +01:00
class Rewind::Action::BaseReport < Service::ActionBase
2024-12-12 17:45:22 -03:00
option :user
option :date
def call
raise NotImplementedError
end
2024-12-13 17:00:17 +01:00
def self.enabled?
2024-12-12 17:45:22 -03:00
true
end
end
end