mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* feat : matching request email to session email * feat : implement AuthRequestHeaderValidator * fix : matching table definitions between migrator and sql project. * fix : fixing tests
13 lines
458 B
C#
13 lines
458 B
C#
namespace Bit.Identity.IdentityServer.RequestValidators;
|
|
|
|
public interface IAuthRequestHeaderValidator
|
|
{
|
|
/// <summary>
|
|
/// This method matches the Email in the header the input email. Implementation depends on
|
|
/// GrantValidator.
|
|
/// </summary>
|
|
/// <param name="userEmail">email fetched by grantValidator</param>
|
|
/// <returns>true if the emails match false otherwise</returns>
|
|
bool ValidateAuthEmailHeader(string userEmail);
|
|
}
|