skill-assessment-app/app/policies/user_policy.rb
2016-09-20 14:22:20 -05:00

22 lines
340 B
Ruby

# frozen_string_literal: true
class UserPolicy < ApplicationPolicy
def view?
user.admin? && show?
end
def create?
user.admin?
end
def update?
user.admin?
end
class Scope < Scope
def resolve
return scope if user.admin?
raise Pundit::NotAuthorizedError, "No access to resource."
end
end
end