Adds domain support to OSEM
- This is a very basic support. All it affects is the listings on the homepage. Every conference can set a domain, and as long as the request host matches this domain, the conference will be shown on the list - If a conference does not have a domain set (which will be the case for older conferences), such conferences are shown always - Conference creation and edits now have an optional domain field - Also adds corresponding migrations (+index)
This commit is contained in:
parent
945b4aac60
commit
92750a4a2b
8 changed files with 21 additions and 4 deletions
|
|
@ -499,6 +499,10 @@ class Conference < ActiveRecord::Base
|
|||
result - active_conferences
|
||||
end
|
||||
|
||||
def self.get_conferences_to_list(domain, end_date = Date.current)
|
||||
return Conference.where('end_date >= ? AND (domain = ? OR domain IS NULL)', end_date, domain).reorder(start_date: :asc)
|
||||
end
|
||||
|
||||
##
|
||||
# A list with the three event states submitted, confirmed, unconfirmed with corresponding colors
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue