mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-18 02:31:56 +10:00
push a bunch of console.logs
This commit is contained in:
@ -56,6 +56,8 @@ export class ResumeController {
|
||||
@User('id') userId?: number,
|
||||
@Query('secretKey') secretKey?: string
|
||||
) {
|
||||
console.log('ResumeController~findOneByIdentifier', username, slug, userId, secretKey);
|
||||
|
||||
return this.resumeService.findOneByIdentifier(username, slug, userId, secretKey);
|
||||
}
|
||||
|
||||
|
||||
@ -162,6 +162,8 @@ export class ResumeService {
|
||||
throw new HttpException('The resume you are looking does not exist, or maybe never did?', HttpStatus.NOT_FOUND);
|
||||
}
|
||||
|
||||
console.log('ResumeService~findOneByIdentifier', resume);
|
||||
|
||||
return resume;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user