30 lines
826 B
TypeScript
30 lines
826 B
TypeScript
import { Body, Controller, Post } from '@nestjs/common';
|
|
import { AuthService } from '../services/auth.service';
|
|
import { VerifyInput } from '../dto/verify.input';
|
|
import { Verify } from '../dto/verify.entity';
|
|
import { TokenService } from '../services/token.service';
|
|
|
|
@Controller('auth/verify')
|
|
export class VerifyAuthController {
|
|
constructor(
|
|
private readonly authService: AuthService,
|
|
private readonly tokenService: TokenService,
|
|
) {}
|
|
|
|
@Post()
|
|
async verify(@Body() verifyInput: VerifyInput): Promise<Verify> {
|
|
const email = await this.tokenService.verifyLoginToken(
|
|
verifyInput.loginToken,
|
|
);
|
|
const result = await this.authService.verify(email, {
|
|
id: true,
|
|
firstName: true,
|
|
lastName: true,
|
|
email: true,
|
|
emailVerified: true,
|
|
});
|
|
|
|
return result;
|
|
}
|
|
}
|