25 lines
391 B
Ruby
25 lines
391 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Staff::AccountPolicy < ApplicationPolicy
|
|
def index?
|
|
return false if restricted?
|
|
|
|
account&.superuser?
|
|
end
|
|
|
|
def show?
|
|
return false if restricted?
|
|
|
|
account&.superuser?
|
|
end
|
|
|
|
class Scope < Scope
|
|
def resolve
|
|
return scope.none if restricted?
|
|
|
|
return scope.all if account&.superuser?
|
|
|
|
scope.none
|
|
end
|
|
end
|
|
end
|