Files
Atay-Makhzan/services/auth/source/oauth2/source_authenticate.go
T

20 lines
601 B
Go
Raw Normal View History

2021-07-24 11:16:34 +01:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-07-24 11:16:34 +01:00
package oauth2
import (
2023-09-14 19:09:32 +02:00
"context"
user_model "code.gitea.io/gitea/models/user"
2021-07-24 11:16:34 +01:00
"code.gitea.io/gitea/services/auth/source/db"
)
// Authenticate falls back to the db authenticator
2023-09-14 19:09:32 +02:00
func (source *Source) Authenticate(ctx context.Context, user *user_model.User, login, password string) (*user_model.User, error) {
return db.Authenticate(ctx, user, login, password)
2021-07-24 11:16:34 +01:00
}
// NB: Oauth2 does not implement LocalTwoFASkipper for password authentication
// as its password authentication drops to db authentication