From 9e337fc8b087f142114d6cfb54e10b8afb072f67 Mon Sep 17 00:00:00 2001 From: Steven Fuchs Date: Wed, 25 Jan 2012 19:03:31 -0500 Subject: [PATCH] read_all button on notifications page redirects to stream. --- app/controllers/notifications_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/notifications_controller.rb b/app/controllers/notifications_controller.rb index 0673b8338..201b61636 100644 --- a/app/controllers/notifications_controller.rb +++ b/app/controllers/notifications_controller.rb @@ -52,7 +52,7 @@ class NotificationsController < ApplicationController def read_all Notification.where(:recipient_id => current_user.id).update_all(:unread => false) respond_to do |format| - format.html { redirect_to notifications_path } + format.html { redirect_to multi_stream_path } format.xml { render :xml => {}.to_xml } format.json { render :json => {}.to_json } end