1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/controllers/sessions_controller.rb
2023-03-29 18:01:16 +02:00

14 lines
424 B
Ruby

# frozen_string_literal: true
# Devise controller for handling client sessions
class SessionsController < Devise::SessionsController
def new
active_provider = Rails.configuration.auth_provider
if active_provider.providable_type == 'DatabaseProvider'
super
else
redirect_post "/users/auth/#{active_provider.strategy_name}", params: { authenticity_token: form_authenticity_token }
end
end
end