Files
snpr/app/controllers/index_controller.rb
2017-12-31 13:02:34 +01:00

9 lines
157 B
Ruby

# frozen_string_literal: true
class IndexController < ApplicationController
def index
if current_user
redirect_to current_user
end
end
end