mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 03:55:37 +01:00
POC for oidc
This commit is contained in:
parent
60eaaaff60
commit
8b5451978b
11 changed files with 204 additions and 4 deletions
|
|
@ -268,4 +268,12 @@ model Revenue {
|
|||
@@index([websiteId, createdAt])
|
||||
@@index([websiteId, sessionId, createdAt])
|
||||
@@map("revenue")
|
||||
}
|
||||
}
|
||||
|
||||
model OidcState {
|
||||
state String @id() @unique() @db.Uuid
|
||||
codeVerifier String @db.VarChar(255)
|
||||
createdAt DateTime @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
|
||||
@@map("oidc_state")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue