Browse Source

Fix for companion registration

development
Godwin 7 years ago
parent
commit
c21cc05c99
  1. 7
      app/helpers/widgets_helper.rb

7
app/helpers/widgets_helper.rb

@ -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…
Cancel
Save