forgottn/collegetrack_portal

View on GitHub
app/helpers/email_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module EmailHelper
  
  def ensure_sign_in
    if current_user.blank?
      redirect_to root_path
    end
  end

end