aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/pages_controller.rb
blob: 309fb0587d97ddf26782a7618e1a055f101b9a1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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