mirror of
https://github.com/chenasraf/snpr.git
synced 2026-05-18 01:39:01 +00:00
9 lines
157 B
Ruby
9 lines
157 B
Ruby
# frozen_string_literal: true
|
|
class IndexController < ApplicationController
|
|
def index
|
|
if current_user
|
|
redirect_to current_user
|
|
end
|
|
end
|
|
end
|