Skip to content
Snippets Groups Projects
Forked from PortalMEC / portalmec
1807 commits behind the upstream repository.
user_policy.rb 155 B
class UserPolicy < ApplicationPolicy
  include FollowablePolicy

  def create?
    user.is_admin?
  end

  def show?
    record if user_exists?
  end

end