This commit is contained in:
2025-02-17 10:43:41 -05:00
parent 1f8e167f4b
commit e71fac4f99
3 changed files with 12 additions and 9 deletions

View File

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