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

* Add PasswordlessAuth Settings * Update Repository Method to Take TimeSpan * Update AuthRequest_DeleteIfExpired - Take Configurable Expiration - Add Special Cases for AdminApproval AuthRequests * Add AuthRequestRepositoryTests * Run Formatting * Remove Comment * Fix Bug in EF Repo * Add Test Covering Expired Rejected AuthRequest * Use Longer Param Names * Use Longer Names in Test Helpers
10 lines
280 B
C#
10 lines
280 B
C#
namespace Bit.Core.Auth.Settings;
|
|
|
|
public interface IPasswordlessAuthSettings
|
|
{
|
|
bool KnownDevicesOnly { get; set; }
|
|
TimeSpan UserRequestExpiration { get; set; }
|
|
TimeSpan AdminRequestExpiration { get; set; }
|
|
TimeSpan AfterAdminApprovalExpiration { get; set; }
|
|
}
|