11 lines
187 B
Ruby
11 lines
187 B
Ruby
class Gestionnaires::SessionsController < Sessions::SessionsController
|
|
layout "new_application"
|
|
|
|
def new
|
|
redirect_to new_user_session_path
|
|
end
|
|
|
|
def create
|
|
super
|
|
end
|
|
end
|