1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-10 13:23:15 +00:00

update SponsorshipStatus enum with states

This commit is contained in:
Jacob Fink
2022-03-16 10:43:09 -04:00
parent 198305814c
commit e1ab74f2e9

View File

@@ -1,8 +1,6 @@
export enum SponsorshipStatus {
None = 0,
Pending = 1,
Sent = 2,
Active = 3,
PendingRevoke = 4,
Revoked = 5,
Requested = 0, // self-hosted only
Sent = 1,
Active = 2,
ToRevoke = 3,
}