# HG changeset patch # User BenoƮt Allard # Date 1412149211 -7200 # Node ID 94bc7fe98b851b05d45ee930aefa92ed4456e7be # Parent 56cab60172ad13b88cb4ce2e858859393fb91670 Redirect to 'welcome' when no document is there. diff -r 56cab60172ad -r 94bc7fe98b85 farol/session.py --- a/farol/session.py Wed Oct 01 09:29:38 2014 +0200 +++ b/farol/session.py Wed Oct 01 09:40:11 2014 +0200 @@ -59,7 +59,6 @@ @wraps(f) def decorated_function(*args, **kwargs): if not has_current(): - flash('Operation invalid without document', 'warning') - return redirect(url_for('new')) + return redirect(url_for('welcome')) return f(*args, **kwargs) return decorated_function