Merge pull request #5019 from tomhughes/oauth2-cleanup
Add expiry for OAuth 2 grants and tokens
This commit is contained in:
commit
70cb93a101
1 changed files with 3 additions and 0 deletions
|
@ -6,4 +6,7 @@ OauthNonce.where("timestamp < EXTRACT(EPOCH FROM NOW() - INTERVAL '1 day')").del
|
|||
OauthToken.where("invalidated_at < NOW() - INTERVAL '28 days'").delete_all
|
||||
RequestToken.where("authorized_at IS NULL AND created_at < NOW() - INTERVAL '28 days'").delete_all
|
||||
|
||||
Doorkeeper::AccessGrant.where("revoked_at < NOW() - INTERVAL '28 days' OR (created_at + expires_in * INTERVAL '1 second') < NOW() - INTERVAL '28 days'").delete_all
|
||||
Doorkeeper::AccessToken.where("revoked_at < NOW() - INTERVAL '28 days' OR (created_at + expires_in * INTERVAL '1 second') < NOW() - INTERVAL '28 days'").delete_all
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue