summaryrefslogtreecommitdiff
path: root/app/monsters_controller.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-28 21:23:38 -0400
committerDavid Gay <david@davidgay.org>2021-05-28 21:23:38 -0400
commitca98987c1a14655aedb4bdcf8fef7311131ca1be (patch)
tree38fdd410cd6fdf97df7fe6215b66765875589ed9 /app/monsters_controller.rb
parentdbc5bea2712344664e0760dc287a7f53754b14d1 (diff)
Monsters controller, activities index, and links to activities and items indexes
Diffstat (limited to 'app/monsters_controller.rb')
-rw-r--r--app/monsters_controller.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/monsters_controller.rb b/app/monsters_controller.rb
new file mode 100644
index 0000000..4f947b3
--- /dev/null
+++ b/app/monsters_controller.rb
@@ -0,0 +1,9 @@
+class MonstersController < ApplicationController
+ def index
+ @monsters = Monster.all.order(:name)
+ end
+
+ def show
+ @monster = Monster.find(params[:id])
+ end
+end