Now that we have  we don't need the check from  anymore.
With the check it's not possible to remove an inactive auth source from
the user.
This commit is contained in:
KN4CK3R 2023-11-06 07:09:34 +01:00 committed by GitHub
parent 1f501dae9e
commit 8557a9455b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ func loadSecurityData(ctx *context.Context) {
// map the provider display name with the AuthSource
sources := make(map[*auth_model.Source]string)
for _, externalAccount := range accountLinks {
if authSource, err := auth_model.GetSourceByID(ctx, externalAccount.LoginSourceID); err == nil && authSource.IsActive {
if authSource, err := auth_model.GetSourceByID(ctx, externalAccount.LoginSourceID); err == nil {
var providerDisplayName string
type DisplayNamed interface {