Browse Source

redirect logged in users to /logs from the index page

pull/243/head
Kat 4 years ago
parent
commit
e611f9bea5
  1. 6
      app/controllers/start_controller.rb

6
app/controllers/start_controller.rb

@ -1,3 +1,7 @@
class StartController < ApplicationController
def index; end
def index
if current_user
redirect_to(case_logs_path)
end
end
end

Loading…
Cancel
Save