ruby-rcade/RubyGameDev.com

View on GitHub
app/controllers/pages_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PagesController < ApplicationController
  def home
    @posts = Post.order('created_at desc').page(params[:page])
    @library_categories = LibraryCategory.all
    render layout: 'one_column'
  end
end