Created
July 24, 2012 19:55
-
-
Save trappist/3172238 to your computer and use it in GitHub Desktop.
broken will_paginate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| will_paginate(@statuses) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class StatusesController < ApplicationController | |
| def index | |
| @statuses = current_user.statuses.includes(:posts).published.order('created_at DESC').paginate(:page => params[:page], :per_page => 15) | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment