summaryrefslogtreecommitdiff
path: root/app/controllers/characters/spells_controller.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-06-15 19:54:29 -0400
committerDavid Gay <david@davidgay.org>2021-06-15 20:00:06 -0400
commitd2a31e04d19796a600a932a3491e056fe2c89af2 (patch)
tree36c43f03b12883c6dc4e2899e3c0ab1b8726b307 /app/controllers/characters/spells_controller.rb
parent53c9df5feb8ad4ebef8f40840d29255a81edb6df (diff)
Basic spellcasting
Diffstat (limited to 'app/controllers/characters/spells_controller.rb')
-rw-r--r--app/controllers/characters/spells_controller.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/characters/spells_controller.rb b/app/controllers/characters/spells_controller.rb
new file mode 100644
index 0000000..9694856
--- /dev/null
+++ b/app/controllers/characters/spells_controller.rb
@@ -0,0 +1,5 @@
+class Characters::SpellsController < ApplicationController
+ def index
+ @spell_activities = Activity.where("gid like ?", "havencast_%").order(:name)
+ end
+end