gleam-wisp / wisp

🧚 A practical web framework for Gleam
https://gleam-wisp.github.io/wisp/
Apache License 2.0
910 stars 41 forks source link

Flash messages #13

Open lpil opened 1 year ago

lpil commented 1 year ago

Flash messages are short text messages stored in a one-request cookie which is used to add that text (often in a banner or alert popup) to the next page load.

https://hexdocs.pm/phoenix/controllers.html#flash-messages

Should we sign these flash cookies? https://github.com/lpil/wisp/issues/5

sporto commented 4 months ago

I made this middleware to use in my app https://hexdocs.pm/wisp_flash/index.html

lpil commented 4 months ago

Ah wonderful! Thank you!