We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I guess it could be helpful to have some function to be sure that we can get the cookie value securely.
When restarting the app sometimes I see the value of the string containing devOpifex/scilis and I did this:
errors <- "" cookie <- req$cookie[[cookie_errors]] if (is.character(cookie) && cookie != "" && length(cookie) > 0 && !str_detect(cookie, "devOpifex/scilis")) { errors <- req$cookie[[cookie_errors]] res$cookie(name = cookie_errors, value = "") }
I imagine something like this:
errors <- "" if (scilis::is_secure(req, cookie_errors)) { errors <- req$cookie[[cookie_errors]] res$cookie(name = cookie_errors, value = "") }
The text was updated successfully, but these errors were encountered:
Not sure why I never thought of that
Sorry, something went wrong.
And also make the change from devOpifex to ambiorix-web, I guess.
No branches or pull requests
I guess it could be helpful to have some function to be sure that we can get the cookie value securely.
When restarting the app sometimes I see the value of the string containing devOpifex/scilis and I did this:
I imagine something like this:
The text was updated successfully, but these errors were encountered: