Inboxen / website

obsolete - use https://github.com/Inboxen/Inboxen
GNU Affero General Public License v3.0
1 stars 28 forks source link

Move to using django's messages #112

Closed tsyesika closed 10 years ago

tsyesika commented 11 years ago

Currently we're pushing things into session cookies which works but I've recently discovered https://docs.djangoproject.com/en/1.5/ref/contrib/messages/ which seems to do exactly what we want, I think we should switch to it.

moggers87 commented 11 years ago

We're not using session cookies at all (other than storing the session ID) - all session data is stored on the server.

But yes, we should use the messages middleware