discourse/app/services/admin_notices/dismiss.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
622 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AdminNotices::Dismiss
include Service::Base
model :admin_notice, optional: true
policy :invalid_access
transaction do
step :destroy
step :reset_problem_check
end
private
def fetch_admin_notice(id:)
AdminNotice.find_by(id: id)
end
def invalid_access(guardian:)
guardian.is_admin?
end
def destroy(admin_notice:)
return if admin_notice.blank?
admin_notice.destroy!
end
def reset_problem_check(admin_notice:)
return if admin_notice.blank?
ProblemCheckTracker.find_by(identifier: admin_notice.identifier)&.reset
end
end