This commit is contained in:
Divyanshu Mehta 2017-07-04 08:08:55 +00:00 committed by GitHub
commit 4a624f10eb
6 changed files with 73 additions and 3 deletions

View file

@ -0,0 +1,16 @@
class RootRouteConstraint
def initialize
@current = Conference.where('start_date <= ? AND end_date >= ?', Date.current, Date.current)
@current = Conference.where('start_date = ?', Date.current + 1) if @current.blank?
end
##
# Checks if only one conference is live and has a public splashpage
# If any conference is live it checks how many live conferences are there
# ====Returns
# * +true+ -> only one conferene is live AND the conference has public splashpage
# * +false+ -> no or more than one conferences are live or the only live conferece has no public splashpage
def matches?(*)
@current.present? && @current.first.splashpage.present? && @current.count == 1 && @current.first.splashpage.public?
end
end