Affix/rpress

View on GitHub
app/controllers/index_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class IndexController < ApplicationController
    def index
        @posts = Post.all.order("id DESC").page(params[:page]).per(5)
    end
end