Files
growstuff/app/controllers/home_controller.rb
google-labs-jules[bot] 7457edf559 Merge pull request #4380 from Growstuff/community-garden-landing-page
feat: Add community garden landing page
2025-12-03 18:20:40 +10:30

16 lines
417 B
Ruby

# frozen_string_literal: true
class HomeController < ApplicationController
skip_authorize_resource
respond_to :html
def index
# we were previously generating a lot of instance variables like
# @members_count and @interesting_crops in here, but now we call
# the relevant class methods directly in the view, so that fragment
# caching will be effective.
end
def community_gardens; end
end