diff options
Diffstat (limited to 'app/controllers/pages_controller.rb')
-rw-r--r-- | app/controllers/pages_controller.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/controllers/pages_controller.rb b/app/controllers/pages_controller.rb new file mode 100644 index 0000000..58c0ee7 --- /dev/null +++ b/app/controllers/pages_controller.rb @@ -0,0 +1,19 @@ +class PagesController < ApplicationController + def home + end + + def about + end + + def more_info + end + + def faq + end + + def contact + end + + def terms + end +end |