diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-23 16:53:39 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-23 16:53:39 +0000 |
commit | 462ba9835e36ca3b42ceb59f33c03a98a22c19af (patch) | |
tree | 7ba54e5e35e4a410d1152a1204d464294518a293 /app/controllers/pages_controller.rb | |
parent | 8ea33a576682005ffaf406541bf21b1be27e19f9 (diff) |
Adds a new home page and more_info page
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 |