feat: traditional Oauth alongside PKCE (#4697)

ref: #4437
This commit is contained in:
Aditya Pimpalkar
2024-04-05 12:09:41 +01:00
committed by GitHub
parent 3df4b78e38
commit ed8ecb154d
8 changed files with 161 additions and 39 deletions

View File

@ -16,6 +16,8 @@ import { User } from 'src/engine/core-modules/user/user.entity';
import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity';
export enum AppTokenType {
RefreshToken = 'REFRESH_TOKEN',
CodeChallenge = 'CODE_CHALLENGE',
AuthorizationCode = 'AUTHORIZATION_CODE',
}
@Entity({ name: 'appToken', schema: 'core' })