13 lines
251 B
Ruby
13 lines
251 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DelayedJobPolicy < ApplicationPolicy
|
|
def update?
|
|
user.is_admin?
|
|
end
|
|
|
|
alias_method :cancel?, :update?
|
|
alias_method :destroy?, :update?
|
|
alias_method :retry?, :update?
|
|
alias_method :run?, :update?
|
|
end
|