georgebellos/real_estate

View on GitHub
app/controllers/pages_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PagesController < ApplicationController
  def home
    @properties = Property.recently_created(8)
  end

  def info
  end

end