Files
x-stake/app/policies/sell_crypto_order_policy.rb
2021-08-15 12:51:09 -03:00

11 lines
208 B
Ruby

# frozen_string_literal: true
class SellCryptoOrderPolicy < ApplicationPolicy
class Scope < Scope
def resolve
return scope.none if user.nil?
scope.where(user_id: user.id)
end
end
end