51c145d2ce
- Release scrape on Github - Add presentation video - Add demonstration link for gestionnaire and user
18 lines
No EOL
372 B
Ruby
18 lines
No EOL
372 B
Ruby
class RootController < ApplicationController
|
|
def index
|
|
|
|
if user_signed_in?
|
|
redirect_to users_dossiers_path
|
|
|
|
elsif gestionnaire_signed_in?
|
|
redirect_to backoffice_dossiers_path
|
|
|
|
elsif administrateur_signed_in?
|
|
redirect_to admin_procedures_path
|
|
|
|
else
|
|
@latest_release = Github::Releases.latest
|
|
render 'landing'
|
|
end
|
|
end
|
|
end |