7 lines
124 B
Ruby
7 lines
124 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Staff::HomePolicy < ApplicationPolicy
|
|
def show?
|
|
account&.is_superuser?
|
|
end
|
|
end
|