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