aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/pages_controller.rb
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-11-23 16:53:39 +0000
committerMatthew Lemon <y@yulqen.org>2024-11-23 16:53:39 +0000
commit462ba9835e36ca3b42ceb59f33c03a98a22c19af (patch)
tree7ba54e5e35e4a410d1152a1204d464294518a293 /app/controllers/pages_controller.rb
parent8ea33a576682005ffaf406541bf21b1be27e19f9 (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.rb19
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