summaryrefslogtreecommitdiff
path: root/app/controllers/characters
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-19 19:41:34 -0400
committerDavid Gay <david@davidgay.org>2021-05-19 19:41:34 -0400
commit8323f7da46f48b17646f5e7d6b407e1a994d7a3f (patch)
tree6b34204e7a8f80a487aa9b43067cf5b6e807abaa /app/controllers/characters
parent38fff0e2d09f2954d747baf65ab555427ba653be (diff)
Show constructed amenities and provide links for building new ones
Diffstat (limited to 'app/controllers/characters')
-rw-r--r--app/controllers/characters/hearth_controller.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/controllers/characters/hearth_controller.rb b/app/controllers/characters/hearth_controller.rb
index 27cd77d..f2d2bf7 100644
--- a/app/controllers/characters/hearth_controller.rb
+++ b/app/controllers/characters/hearth_controller.rb
@@ -1,5 +1,6 @@
class Characters::HearthController < ApplicationController
def index
@all_amenities = HearthAmenity.all
+ @construct_activities = Activity.where("gid like ?", "construct_%")
end
end