mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
27 lines
761 B
Ruby
27 lines
761 B
Ruby
class SessionsController < Devise::SessionsController
|
|
def create
|
|
# TODO: Create ID Card login here:
|
|
# this is just testing config
|
|
# if Rails.env.development? || Rails.env.test?
|
|
@user = User.first if params[:user1]
|
|
@user = User.second if params[:user2]
|
|
|
|
return redirect_to :back, alert: 'No user' if @user.blank?
|
|
|
|
session[:current_user_registrar_id] = Registrar.first.id if @user.admin?
|
|
|
|
flash[:notice] = I18n.t('shared.welcome')
|
|
sign_in_and_redirect @user, event: :authentication
|
|
# end
|
|
end
|
|
|
|
def login
|
|
render 'layouts/login', layout: false
|
|
end
|
|
|
|
def switch_registrar
|
|
authorize! :switch, :registrar
|
|
session[:current_user_registrar_id] = params[:registrar_id]
|
|
redirect_to client_root_path
|
|
end
|
|
end
|