summaryrefslogtreecommitdiff
path: root/app/controllers/characters/spells_controller.rb
blob: 9694856e5209d263fcad46a2760092b6a7dbd04b (plain)
1
2
3
4
5
class Characters::SpellsController < ApplicationController
  def index
    @spell_activities = Activity.where("gid like ?", "havencast_%").order(:name)
  end
end