2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
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-07-26 00:14:23 +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
|
|
|
|
|
2016-10-13 07:21:27 +00:00
|
|
|
def index?
|
2016-07-26 00:14:23 +00:00
|
|
|
user.present?
|
2016-03-13 21:19:26 +00:00
|
|
|
end
|
|
|
|
|
2016-10-13 07:21:27 +00:00
|
|
|
def create?
|
2016-03-13 21:19:26 +00:00
|
|
|
user.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
|
|
|
user.present? && record.user == user
|
|
|
|
end
|
|
|
|
end
|