Plug forgot password page

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-06 19:41:24 +01:00
committed by Bryan Frimin
parent 1ff443c475
commit 468a0191ca
4 changed files with 235 additions and 133 deletions

View File

@@ -0,0 +1,92 @@
/**
* @generated SignedSource<<a089ede7865d3d5f828ac7df7d3a2286>>
* @lightSyntaxTransform
* @nogrep
*/
/* tslint:disable */
/* eslint-disable */
// @ts-nocheck
import { ConcreteRequest } from 'relay-runtime';
export type ForgotPasswordInput = {
email: string;
};
export type ForgotPasswordPageMutation$variables = {
input: ForgotPasswordInput;
};
export type ForgotPasswordPageMutation$data = {
readonly forgotPassword: {
readonly success: boolean;
} | null | undefined;
};
export type ForgotPasswordPageMutation = {
response: ForgotPasswordPageMutation$data;
variables: ForgotPasswordPageMutation$variables;
};
const node: ConcreteRequest = (function(){
var v0 = [
{
"defaultValue": null,
"kind": "LocalArgument",
"name": "input"
}
],
v1 = [
{
"alias": null,
"args": [
{
"kind": "Variable",
"name": "input",
"variableName": "input"
}
],
"concreteType": "ForgotPasswordPayload",
"kind": "LinkedField",
"name": "forgotPassword",
"plural": false,
"selections": [
{
"alias": null,
"args": null,
"kind": "ScalarField",
"name": "success",
"storageKey": null
}
],
"storageKey": null
}
];
return {
"fragment": {
"argumentDefinitions": (v0/*: any*/),
"kind": "Fragment",
"metadata": null,
"name": "ForgotPasswordPageMutation",
"selections": (v1/*: any*/),
"type": "Mutation",
"abstractKey": null
},
"kind": "Request",
"operation": {
"argumentDefinitions": (v0/*: any*/),
"kind": "Operation",
"name": "ForgotPasswordPageMutation",
"selections": (v1/*: any*/)
},
"params": {
"cacheID": "bb493ef26d51e7d560857008669c2ec5",
"id": null,
"metadata": {},
"name": "ForgotPasswordPageMutation",
"operationKind": "mutation",
"text": "mutation ForgotPasswordPageMutation(\n $input: ForgotPasswordInput!\n) {\n forgotPassword(input: $input) {\n success\n }\n}\n"
}
};
})();
(node as any).hash = "de03243068e655c7f48b7e96e145a617";
export default node;