-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable the session continuity interceptor (part of FFB). #257
base: main
Are you sure you want to change the base?
Conversation
@spokenbird here's a pass at this. I think we should skip this for the current release, but try for the next one. There are a few things to be worked out as I don't think this is quite right yet. And I think the ffl needs a change as well to address an issue in the session interceptor code. At any rate, this is a first pass, but I don't feel confident moving forward with this as I think it will still throw an error when a session times out. |
} else { | ||
implementation "org.codeforamerica.platform:form-flow:${formFlowLibraryVersion}" | ||
println "📚Using form flow library ${formFlowLibraryVersion}" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These if / else's are temporary.
Users will get redirected to the first page in the event of a session timeout. This will prevent users from continuing on w/o knowing that their session expired and their record is now split. Remove creation of a session in static page controller, as this is not necessary.
WIP: Still needs work.
90a6c22
to
065e50e
Compare
Users will get redirected to the index page in the event of a session timeout. This will prevent users from continuing on w/o knowing that their session expired and their record is now split.
Remove creation of a session in static page controller, as this is not necessary.