stevekaplan123/carpe_diem

View on GitHub
app/controllers/static_pages_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class StaticPagesController < ApplicationController
  skip_before_action :authorize

  def home
    if logged_in?
      redirect_to events_path
    end
  end

  def help
  end

  def about
  end
end