mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
* [PM-14373] Introduce SecurityTask entity and related enums * [PM-14373] Add Dapper SecurityTask repository * [PM-14373] Introduce MSSQL table, view, and stored procedures * [PM-14373] Add EF SecurityTask repository and type configurations * [PM-14373] Add EF Migration * [PM-14373] Add integration tests * [PM-14373] Formatting * Typo Co-authored-by: Matt Bishop <mbishop@bitwarden.com> * Typo Co-authored-by: Matt Bishop <mbishop@bitwarden.com> * [PM-14373] Remove DeleteById sproc * [PM-14373] SQL formatting --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
19 lines
457 B
C#
19 lines
457 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Core.Vault.Enums;
|
|
|
|
public enum SecurityTaskStatus : byte
|
|
{
|
|
/// <summary>
|
|
/// Default status for newly created tasks that have not been completed.
|
|
/// </summary>
|
|
[Display(Name = "Pending")]
|
|
Pending = 0,
|
|
|
|
/// <summary>
|
|
/// Status when a task is considered complete and has no remaining actions
|
|
/// </summary>
|
|
[Display(Name = "Completed")]
|
|
Completed = 1,
|
|
}
|