* Reflashes messages (except some keys) from the last request in the current response * * @param keys - Array of keys to exclude from reflashing * * @example * session.reflashExcept(['error', 'warning'])
(keys: string[])
| 567 | * session.reflashExcept(['error', 'warning']) |
| 568 | */ |
| 569 | reflashExcept(keys: string[]) { |
| 570 | this.#getFlashStore('write').set('reflashed', lodash.omit(this.flashMessages.all(), keys)) |
| 571 | } |
| 572 | |
| 573 | /** |
| 574 | * Checks if the current store supports session tagging. |
no test coverage detected