chore: created the route to initate magic link auth
This commit is contained in:
@@ -3,25 +3,37 @@ import { ObjectType, ID, Field } from '@nestjs/graphql';
|
||||
@ObjectType()
|
||||
export class User {
|
||||
@Field(() => ID, {
|
||||
description: 'Firebase UID of the user',
|
||||
description: 'ID of the user',
|
||||
})
|
||||
uid: string;
|
||||
id: string;
|
||||
|
||||
@Field({
|
||||
nullable: true,
|
||||
description: 'Displayed name of the user (if given)',
|
||||
description: 'Name of the user (if fetched)',
|
||||
})
|
||||
displayName?: string;
|
||||
name?: string;
|
||||
|
||||
@Field({
|
||||
nullable: true,
|
||||
description: 'Email of the user (if given)',
|
||||
description: 'Email of the user (if fetched)',
|
||||
})
|
||||
email?: string;
|
||||
|
||||
@Field({
|
||||
nullable: true,
|
||||
description: 'URL to the profile photo of the user (if given)',
|
||||
description: 'URL to the profile photo of the user (if fetched)',
|
||||
})
|
||||
photoURL?: string;
|
||||
image?: string;
|
||||
|
||||
@Field({
|
||||
nullable: true,
|
||||
description: 'Flag to determine if user is an Admin or not',
|
||||
})
|
||||
isAdmin?: string;
|
||||
|
||||
@Field({
|
||||
nullable: true,
|
||||
description: 'Date when the user account was created',
|
||||
})
|
||||
createdOn?: string;
|
||||
}
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { UserResolver } from './user.resolver';
|
||||
import { PubSubModule } from 'src/pubsub/pubsub.module';
|
||||
import { UserService } from './user.service';
|
||||
|
||||
@Module({
|
||||
imports: [PubSubModule],
|
||||
providers: [UserResolver],
|
||||
exports: [],
|
||||
exports: [UserService],
|
||||
})
|
||||
export class UserModule {}
|
||||
|
||||
Reference in New Issue
Block a user