mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-24 09:17:53 -05:00
12 lines
356 B
Ruby
12 lines
356 B
Ruby
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
|
|
end
|