blob: 309fb0587d97ddf26782a7618e1a055f101b9a1d (
plain) (
tree)
|
|
class PagesController < ApplicationController
allow_unauthenticated_access only: %i[ home about more_info faq contact terms ]
def home
end
def about
end
def more_info
end
def faq
end
def contact
end
def terms
end
end
|