Newer
Older
dmpopidor / app / controllers / paginable / notifications_controller.rb
@Quentin Sonrel Quentin Sonrel on 16 May 2018 269 bytes Implemented Notifications
module Paginable
  class NotificationsController < ApplicationController
    include Paginable
    # /paginable/notifications/index/:page
    def index
      authorize(Notification)
      paginable_renderise(partial: 'index', scope: Notification.all)
    end
  end
end