mirror of
https://github.com/discourse/discourse-rewind.git
synced 2025-07-08 06:32:46 +00:00
19 lines
277 B
Ruby
19 lines
277 B
Ruby
# 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
|