fix the build

This commit is contained in:
Régis Hanol
2018-05-26 03:11:10 +02:00
parent 338d39265a
commit 5b2e7c8d10
3 changed files with 7 additions and 10 deletions

View File

@ -59,10 +59,11 @@ class NotificationsController < ApplicationController
else
Notification.where(user_id: current_user.id).includes(:topic).where(read: false).update_all(read: true)
current_user.saw_notification_id(Notification.recent_report(current_user, 1).max.try(:id))
current_user.reload
current_user.publish_notifications_state
end
current_user.reload
current_user.publish_notifications_state
render json: success_json
end