8 lines
99 B
Ruby
8 lines
99 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class HomePolicy < ApplicationPolicy
|
||
|
def show?
|
||
|
true
|
||
|
end
|
||
|
end
|