You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Inertia V2, we will have one feature to encrypt and clear the history of the browser;
Context
The main goal of this feature is to address this issue inertiajs/inertia#1784, that is a potential security issue with the back history go back when multiple users uses the same browser
Implementation
Inspired by Inertia Laravel's implementation, we need to complete the following task:
Send in the page response clearHistory and encryptHistory props
Create a function that clear the history inside the controller
Create a new config to encryptHistory or not
Maybe create a middleware to always encrypt the history based on config (src/EncryptHistoryMiddleware.php). Maybe for the rails world, one before_action is enough
The text was updated successfully, but these errors were encountered:
In Inertia V2, we will have one feature to encrypt and clear the history of the browser;
Context
The main goal of this feature is to address this issue inertiajs/inertia#1784, that is a potential security issue with the back history go back when multiple users uses the same browser
Implementation
Inspired by Inertia Laravel's implementation, we need to complete the following task:
clearHistory
andencryptHistory
propsbefore_action
is enoughThe text was updated successfully, but these errors were encountered: