Skip to content
Extraits de code Groupes Projets
Valider c7f3a9ab rédigé par Nick van der Burgt's avatar Nick van der Burgt
Parcourir les fichiers

Pagination for the notifications

parent 507a2737
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -18,9 +18,12 @@ class NotificationsController < ApplicationController ...@@ -18,9 +18,12 @@ class NotificationsController < ApplicationController
end end
def index def index
@notifications = Notification.for(current_user).limit(25) @notifications = Notification.for(current_user).paginate :page => params[:page], :per_page => 25
@group_days = @notifications.group_by{|note| note.created_at.strftime("%B %d") } @group_days = @notifications.group_by{|note| note.created_at.strftime("%B %d") }
respond_with @notifications respond_with @notifications
end end
def delete
end
end end
...@@ -40,3 +40,4 @@ ...@@ -40,3 +40,4 @@
= object_link(note) = object_link(note)
%span.time= "#{t('ago', :time => time_ago_in_words(note.created_at))}" %span.time= "#{t('ago', :time => time_ago_in_words(note.created_at))}"
= will_paginate @people
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter