mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-29 12:12:57 -04:00
20 lines
481 B
Ruby
20 lines
481 B
Ruby
class HomeController < ApplicationController
|
|
skip_authorize_resource
|
|
|
|
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.
|
|
|
|
respond_to do |format|
|
|
foo = "bar"
|
|
@fred = "barney"
|
|
raise "ohno! #{@fred}"
|
|
format.html # index.html.haml
|
|
end
|
|
end
|
|
|
|
end
|