Merge pull request #2425 from vikhyat/read-notifications-silently

Allow reading notifications without marking them as read
This commit is contained in:
Sam 2014-06-18 08:09:07 +10:00
commit 9007d96466
2 changed files with 16 additions and 4 deletions

View File

@ -8,7 +8,7 @@ class NotificationsController < ApplicationController
if notifications.present?
# ordering can be off due to PMs
max_id = notifications.map(&:id).max
current_user.saw_notification_id(max_id)
current_user.saw_notification_id(max_id) unless params.has_key?(:silent)
end
current_user.reload
current_user.publish_notifications_state

View File

@ -5,12 +5,24 @@ describe NotificationsController do
context 'when logged in' do
let!(:user) { log_in }
before do
it 'should succeed' do
xhr :get, :index
response.should be_success
end
subject { response }
it { should be_success }
it 'should mark notifications as viewed' do
notification = Fabricate(:notification, user: user)
user.reload.unread_notifications.should == 1
xhr :get, :index
user.reload.unread_notifications.should == 0
end
it 'should not mark notifications as viewed if silent param is present' do
notification = Fabricate(:notification, user: user)
user.reload.unread_notifications.should == 1
xhr :get, :index, silent: true
user.reload.unread_notifications.should == 1
end
end
context 'when not logged in' do