1
0
mirror of https://github.com/bitwarden/server synced 2026-01-04 01:23:25 +00:00

[PM- 19438] emergency access docs (#5846)

* doc: adding readme and comments to code for emergency access feature.
* fix: renaming variable names to better match vocabulary around emergency access.
This commit is contained in:
Ike
2025-05-28 10:27:34 -04:00
committed by GitHub
parent fbc8e06c99
commit 4f326da8da
6 changed files with 309 additions and 90 deletions

View File

@@ -2,6 +2,12 @@
public enum EmergencyAccessType : byte
{
/// <summary>
/// Allows emergency contact to view the Grantor's data.
/// </summary>
View = 0,
/// <summary>
/// Allows emergency contact to take over the Grantor's account by overwriting the Grantor's password.
/// </summary>
Takeover = 1,
}