9 lines
154 B
Ruby
9 lines
154 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Staff::HomePolicy < ApplicationPolicy
|
|
def show?
|
|
return false if restricted?
|
|
|
|
account&.superuser?
|
|
end
|
|
end
|