Next auth fixes (#658)

This commit is contained in:
Geometrically
2023-07-14 22:55:00 -07:00
committed by GitHub
parent a89418e33b
commit ec80c2b9db
6 changed files with 19 additions and 18 deletions

View File

@@ -79,10 +79,10 @@ bitflags::bitflags! {
// read a user's sessions
const SESSION_READ = 1 << 28;
// delete a session22
// delete a session
const SESSION_DELETE = 1 << 29;
const ALL = 0b11111111111111111111111111111;
const ALL = 0b111111111111111111111111111111;
const NOT_RESTRICTED = 0b00000011111111111111100111;
const NONE = 0b0;
}