codecation/trailmix

View on GitHub
app/controllers/landing_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class LandingController < ApplicationController
  def show
    if signed_in?
      redirect_to entries_path
    end
  end
end