You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/policies/api_token_policy.rb

8 lines
107 B
Ruby

class ApiTokenPolicy < ApplicationPolicy
def destroy?
user.admin? || record.user == user
end
end