mirror of
https://github.com/tinyauthapp/tinyauth.git
synced 2026-08-30 01:53:31 +08:00
feat: do not show oidc consent screen every time (#989)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS "oidc_consents";
|
||||
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS "oidc_consents" (
|
||||
"username" TEXT NOT NULL,
|
||||
"client_id" TEXT NOT NULL,
|
||||
"scope" TEXT NOT NULL,
|
||||
"created_at" INTEGER NOT NULL,
|
||||
PRIMARY KEY ("username", "client_id")
|
||||
);
|
||||
Reference in New Issue
Block a user