diff --git a/app/models/conference.rb b/app/models/conference.rb index 724c2499..7d4213ae 100644 --- a/app/models/conference.rb +++ b/app/models/conference.rb @@ -45,7 +45,7 @@ class Conference < ActiveRecord::Base end def highlights - where(is_highlight: true) + where(state: :confirmed, is_highlight: true) end end has_many :event_users, through: :events