working on auth.

mailer, basic setup with html template and a dev treansport
This commit is contained in:
2024-11-15 21:42:15 +05:30
parent b0db98452a
commit 26a00c9f7c
45 changed files with 923 additions and 252 deletions

View File

@@ -28,20 +28,18 @@ export type AuthUser = {
export type Mutation = {
__typename?: 'Mutation';
login: Scalars['Boolean']['output'];
login: AuthUser;
logout: Scalars['Boolean']['output'];
};
export type MutationLoginArgs = {
email: Scalars['String']['input'];
username: Scalars['String']['input'];
pwd: Scalars['String']['input'];
};
export type Query = {
__typename?: 'Query';
heartBeat: Scalars['Boolean']['output'];
/** me, is current AuthUser info */
me?: Maybe<AuthUser>;
};

BIN
web/public/mailer-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB