-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
MSC2918 Refresh tokens implementation #9450
Changes from 11 commits
fe80ef5
523d8cf
358da22
f53466e
324d7bf
450a962
022485e
51ba1c3
d281f7e
f499d63
e402a07
adc6eab
6963fe0
318b74c
29806b4
72e5c25
eb9f680
417a34a
45177a6
e37f53a
262d1ab
75ce9e5
6f2cc61
b7b17ed
c7eab51
088e023
6247228
67d4c9e
2ec853c
9e7ce1f
45e2eaf
c20f94a
790baac
01b0740
797e0d3
8f8f369
6024ed8
908c279
cdfd871
b169a62
e07ef9b
4cf49a6
ef0e051
7adfe0c
ab443a3
0060bc9
18628fc
bcc33e2
ddfc2a4
a013064
9fe5556
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* Copyright 2021 The Matrix.org Foundation C.I.C | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
-- Add a flag whether the token was already used or not | ||
ALTER TABLE "access_tokens" | ||
ADD COLUMN used BOOLEAN NOT NULL DEFAULT FALSE; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* Copyright 2021 The Matrix.org Foundation C.I.C | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
-- Add a flag whether the token was already used or not | ||
ALTER TABLE "access_tokens" | ||
ADD COLUMN used BOOLEAN NOT NULL DEFAULT 0; |
Uh oh!
There was an error while loading. Please reload this page.