Browse Source
* redirect logged in users to /logs from the index page * Fix tests Co-authored-by: baarkerlounger <baarkerlounger@users.noreply.github.com> Co-authored-by: baarkerlounger <baarkerlounger@users.noreply.github.com>pull/248/head
kosiakkatrina
3 years ago
committed by
GitHub
5 changed files with 10 additions and 4 deletions
@ -1,3 +1,7 @@ |
|||||||
class StartController < ApplicationController |
class StartController < ApplicationController |
||||||
def index; end |
def index |
||||||
|
if current_user |
||||||
|
redirect_to(case_logs_path) |
||||||
|
end |
||||||
|
end |
||||||
end |
end |
||||||
|
Loading…
Reference in new issue