Fix for companion registration
This commit is contained in:
parent
f533b079ba
commit
c21cc05c99
@ -306,11 +306,8 @@ module WidgetsHelper
|
||||
end
|
||||
|
||||
if companion_user.present?
|
||||
cr = ConferenceRegistration.where(user_id: companion_user.id).order(created_at: :desc).limit(1).first
|
||||
|
||||
if cr.present? && ((cr.steps_completed || []).include? 'questions')
|
||||
return companion_user
|
||||
end
|
||||
cr = ConferenceRegistration.where(user_id: companion_user.id, conference_id: registration.conference_id).limit(1).first
|
||||
return companion_user if cr.present? && cr.registered?
|
||||
end
|
||||
return :unregistered
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user