class HomeController < ApplicationController def index @rsvp_by_date = rsvp_by_date end def rsvp_by_date ENV["RSVP_DATE"] || "April 20, 2025" end end