Verify Email + Reset Password flows (#654)

* verifiers

* add missing emails

* fix gh perms
This commit is contained in:
Geometrically
2023-07-12 20:40:24 -07:00
committed by GitHub
parent 4bdf9bff3a
commit 0d88ff8dae
12 changed files with 1228 additions and 476 deletions

View File

@@ -82,7 +82,8 @@ bitflags::bitflags! {
// delete a session22
const SESSION_DELETE = 1 << 29;
const ALL = 0b11111111111111111111111111;
const ALL = 0b11111111111111111111111111111;
const NOT_RESTRICTED = 0b00000011111111111111100111;
const NONE = 0b0;
}
}
@@ -97,7 +98,8 @@ impl Scopes {
| Scopes::PAT_DELETE
| Scopes::SESSION_READ
| Scopes::SESSION_DELETE
| Scopes::USER_AUTH_WRITE,
| Scopes::USER_AUTH_WRITE
| Scopes::USER_DELETE,
)
}
}