zaid/thyracker

View on GitHub
app/controllers/pages_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PagesController < ApplicationController

  def home
    @title = 'Home'
    @user = User.new unless signed_in?
  end

  def contact
    @title = 'Contact'
  end
end