2016-03-13 21:19:26 +00:00
|
|
|
class TokenPolicy < ApplicationPolicy
|
|
|
|
class Scope < Scope
|
|
|
|
def resolve
|
|
|
|
if user
|
|
|
|
scope.where('tokens.user_id = ?', user.id)
|
|
|
|
else
|
2016-06-28 06:49:46 +00:00
|
|
|
scope.where(:id => nil).where("id IS NOT ?", nil) # to just return none
|
2016-03-13 21:19:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create?
|
|
|
|
user.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def my_tokens?
|
|
|
|
user.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
|
|
|
user.present? && record.user == user
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|