call4paperz/call4paperz

View on GitHub
app/controllers/home_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HomeController < ApplicationController
  layout "home"

  def index
    @events = Event.most_recent
    @comments = Comment.most_recent.includes(:user, :proposal)
    @events_quantity = Event.active.count
  end
end