6 lines
98 B
Ruby
6 lines
98 B
Ruby
# frozen_string_literal: true
|
|
class MainPolicy < ApplicationPolicy
|
|
def home?
|
|
true
|
|
end
|
|
end
|