summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers')
-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