1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00
bitwarden/src/Identity/IdentityServer/RequestValidators/IAuthRequestHeaderValidator.cs
Ike 85b299ccfc
feat : matching request email to session email (#5541)
* feat : matching request email to session email

* feat : implement AuthRequestHeaderValidator

* fix : matching table definitions between migrator and sql project.

* fix : fixing tests
2025-03-21 18:18:17 -04:00

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);
}