2013-02-05 14:16:51 -05:00
|
|
|
class NotificationsController < ApplicationController
|
|
|
|
|
|
|
|
before_filter :ensure_logged_in
|
|
|
|
|
|
|
|
def index
|
2014-02-13 15:20:56 -05:00
|
|
|
notifications = Notification.recent_report(current_user, 10)
|
2013-05-16 03:30:30 -04:00
|
|
|
|
2014-06-11 20:50:41 -04:00
|
|
|
if notifications.present?
|
|
|
|
# ordering can be off due to PMs
|
|
|
|
max_id = notifications.map(&:id).max
|
2014-06-07 06:17:45 -04:00
|
|
|
current_user.saw_notification_id(max_id) unless params.has_key?(:silent)
|
2014-06-11 20:50:41 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
current_user.reload
|
|
|
|
current_user.publish_notifications_state
|
|
|
|
|
|
|
|
render_serialized(notifications, NotificationSerializer)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|