mirror of
https://github.com/discourse/discourse.git
synced 2025-03-03 11:54:08 +08:00
25 lines
514 B
Ruby
25 lines
514 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
class ClearSlowMode < ::Jobs::Base
|
||
|
|
||
|
def execute(args)
|
||
|
topic_timer = TopicTimer.find_by(id: args[:topic_timer_id] || args[:topic_status_update_id])
|
||
|
|
||
|
if topic_timer.nil? || topic_timer.execute_at > Time.zone.now
|
||
|
return
|
||
|
end
|
||
|
|
||
|
topic = topic_timer&.topic
|
||
|
|
||
|
if topic.nil?
|
||
|
topic_timer.destroy!
|
||
|
return
|
||
|
end
|
||
|
|
||
|
topic.update!(slow_mode_seconds: 0)
|
||
|
topic_timer.trash!(Discourse.system_user)
|
||
|
end
|
||
|
end
|
||
|
end
|