mirror of
https://github.com/immich-app/immich.git
synced 2026-05-29 11:02:38 -04:00
feat: manage link token via cookie instead
This commit is contained in:
@@ -18013,10 +18013,6 @@
|
||||
"pattern": "^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$",
|
||||
"type": "string"
|
||||
},
|
||||
"oauthLinkToken": {
|
||||
"description": "OAuth link token to consume on successful login",
|
||||
"type": "string"
|
||||
},
|
||||
"password": {
|
||||
"description": "User password",
|
||||
"example": "password",
|
||||
@@ -21804,10 +21800,6 @@
|
||||
"example": "Admin",
|
||||
"type": "string"
|
||||
},
|
||||
"oauthLinkToken": {
|
||||
"description": "OAuth link token to consume on successful login",
|
||||
"type": "string"
|
||||
},
|
||||
"password": {
|
||||
"description": "User password",
|
||||
"example": "password",
|
||||
|
||||
@@ -1010,8 +1010,6 @@ export type SignUpDto = {
|
||||
email: string;
|
||||
/** User name */
|
||||
name: string;
|
||||
/** OAuth link token to consume on successful login */
|
||||
oauthLinkToken?: string;
|
||||
/** User password */
|
||||
password: string;
|
||||
};
|
||||
@@ -1026,8 +1024,6 @@ export type ChangePasswordDto = {
|
||||
export type LoginCredentialDto = {
|
||||
/** User email */
|
||||
email: string;
|
||||
/** OAuth link token to consume on successful login */
|
||||
oauthLinkToken?: string;
|
||||
/** User password */
|
||||
password: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user