mirror of
https://github.com/discourse/discourse-rewind.git
synced 2025-07-09 23:13:25 +00:00
17 lines
251 B
Ruby
17 lines
251 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseRewind
|
|
class Rewind::Action::BaseReport < Service::ActionBase
|
|
option :user
|
|
option :date
|
|
|
|
def call
|
|
raise NotImplementedError
|
|
end
|
|
|
|
def self.enabled?
|
|
true
|
|
end
|
|
end
|
|
end
|