Fix infinite 302 redirect
This commit is contained in:
parent
8bdb96777a
commit
1ad3feb101
@ -30,9 +30,19 @@ module RegistrationHelper
|
|||||||
|
|
||||||
def current_step(registration = @registration)
|
def current_step(registration = @registration)
|
||||||
completed_steps = registration.steps_completed || []
|
completed_steps = registration.steps_completed || []
|
||||||
(registration_steps(registration.conference) || []).each do | step |
|
last_step = nil
|
||||||
return step unless completed_steps.include?(step.to_s)
|
(current_registration_steps(registration) || []).each do | step |
|
||||||
|
# return the last enabled step if this one is disabled
|
||||||
|
return last_step unless step[:enabled]
|
||||||
|
|
||||||
|
# save the last step
|
||||||
|
last_step = step[:name]
|
||||||
|
|
||||||
|
# return this step if it hasn't been completed yet
|
||||||
|
return last_step unless completed_steps.include?(last_step.to_s)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# if all else fails, return the first step
|
||||||
return registration_steps(registration.conference).last
|
return registration_steps(registration.conference).last
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user