summaryrefslogtreecommitdiff
path: root/app/controllers/characters/hearth_controller.rb
blob: abe8232b158689e7f1d77bcbe994cb37f5db13e7 (plain)
1
2
3
4
5
6
7
class Characters::HearthController < ApplicationController
  def index
    @all_amenities = HearthAmenity.all
    @construct_activities = Activity.where("gid like ?", "construct_%")
    @forge_activities = Activity.where("gid like ?", "craft_%")
  end
end