openSNP/snpr

View on GitHub
app/controllers/index_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
class IndexController < ApplicationController
  def index
    if current_user
      redirect_to current_user
    end
  end
end