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