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