mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:19:27 +08:00
20 lines
485 B
Ruby
20 lines
485 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class DeleteTopic < ::Jobs::TopicTimerBase
|
|
def execute_timer_action(topic_timer, topic)
|
|
if Guardian.new(topic_timer.user).can_delete?(topic)
|
|
first_post = topic.ordered_posts.first
|
|
|
|
PostDestroyer.new(
|
|
topic_timer.user,
|
|
first_post,
|
|
context: I18n.t("topic_statuses.auto_deleted_by_timer"),
|
|
).destroy
|
|
|
|
topic_timer.trash!(Discourse.system_user)
|
|
end
|
|
end
|
|
end
|
|
end
|