mirror of
https://github.com/discourse/discourse.git
synced 2024-12-19 22:54:12 +08:00
f87333c4e0
Small followup to 932bd6b
.
47 lines
965 B
Ruby
47 lines
965 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DiscourseAutomation::Destroy
|
|
include Service::Base
|
|
|
|
# @!method self.call(guardian:, params:)
|
|
# @param [Guardian] guardian
|
|
# @param [Hash] params
|
|
# @option params [Integer] :automation_id
|
|
# @return [Service::Base::Context]
|
|
|
|
policy :can_destroy_automation
|
|
|
|
params do
|
|
attribute :automation_id, :integer
|
|
validates :automation_id, presence: true
|
|
end
|
|
|
|
model :automation
|
|
|
|
transaction do
|
|
step :log_action
|
|
step :destroy_automation
|
|
end
|
|
|
|
private
|
|
|
|
def can_destroy_automation(guardian:)
|
|
guardian.is_admin?
|
|
end
|
|
|
|
def fetch_automation(params:)
|
|
DiscourseAutomation::Automation.find_by(id: params.automation_id)
|
|
end
|
|
|
|
def log_action(automation:, guardian:)
|
|
StaffActionLogger.new(guardian.user).log_custom(
|
|
"delete_automation",
|
|
**automation.slice(:id, :name, :script, :trigger),
|
|
)
|
|
end
|
|
|
|
def destroy_automation(automation:)
|
|
automation.destroy!
|
|
end
|
|
end
|