mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 03:10:46 -06:00
7f607699b8
Extracted from https://github.com/discourse/discourse/pull/29129. This patch makes the code more compliant with the upcoming service docs best practices.
44 lines
681 B
Ruby
44 lines
681 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Flags::DestroyFlag
|
|
include Service::Base
|
|
|
|
model :flag
|
|
policy :not_system
|
|
policy :not_used
|
|
policy :invalid_access
|
|
transaction do
|
|
step :destroy
|
|
step :log
|
|
end
|
|
|
|
private
|
|
|
|
def fetch_flag(id:)
|
|
Flag.find_by(id: id)
|
|
end
|
|
|
|
def not_system(flag:)
|
|
!flag.system?
|
|
end
|
|
|
|
def not_used(flag:)
|
|
!flag.used?
|
|
end
|
|
|
|
def invalid_access(guardian:, flag:)
|
|
guardian.can_edit_flag?(flag)
|
|
end
|
|
|
|
def destroy(flag:)
|
|
flag.destroy!
|
|
end
|
|
|
|
def log(guardian:, flag:)
|
|
StaffActionLogger.new(guardian.user).log_custom(
|
|
"delete_flag",
|
|
flag.slice(:name, :description, :applies_to, :enabled),
|
|
)
|
|
end
|
|
end
|