Moneyvate/invoices-site

View on GitHub
app/controllers/static_pages_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class StaticPagesController < ApplicationController
  def home
    if user_signed_in?
      render 'dashboard.html.haml'
    else
      render 'home.html.haml'
    end
  end

  def dashboard
  end
end