demarches-normaliennes/app/controllers/start_controller.rb
2015-08-11 15:22:07 +02:00

20 lines
351 B
Ruby

class StartController < ApplicationController
def index
end
def error_siret
flash.now.alert = 'Ce SIRET n\'est pas valide'
render 'index'
end
def error_login
flash.now.alert = 'Ce compte n\'existe pas'
render 'index'
end
def error_dossier
flash.now.alert = 'Ce dossier n\'existe pas'
render 'index'
end
end