remove github authentication for manager

This commit is contained in:
Christophe Robillard 2020-11-03 17:36:35 +01:00
parent 29cfdfbe91
commit 6c2eb22960
10 changed files with 1 additions and 99 deletions

View file

@ -1,16 +0,0 @@
class Administrations::OmniauthCallbacksController < Devise::OmniauthCallbacksController
def github
administration = Administration.from_omniauth(request.env["omniauth.auth"])
if administration.present?
sign_in administration
redirect_to manager_administrateurs_path
else
flash[:alert] = "Compte GitHub non autorisé"
redirect_to root_path
end
end
def failure
redirect_to root_path
end
end