Skip to content

Commit

Permalink
import changes for applicantuploadingdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
rayyanmridha committed Feb 14, 2025
1 parent ffa3c08 commit 8d6d484
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/backend/src/file-upload/file-upload.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
import { FileInterceptor } from '@nestjs/platform-express';
import { FileUploadService } from './file-upload.service';
import { Application } from '../applications/application.entity';

Check warning on line 11 in apps/backend/src/file-upload/file-upload.controller.ts

View workflow job for this annotation

GitHub Actions / pre-deploy

'Application' is defined but never used
import Multer from 'Multer';
import { Request } from 'express';

Check warning on line 12 in apps/backend/src/file-upload/file-upload.controller.ts

View workflow job for this annotation

GitHub Actions / pre-deploy

'Request' is defined but never used

@Controller('file-upload')
export class FileUploadController {
Expand Down
2 changes: 1 addition & 1 deletion apps/backend/src/file-upload/file-upload.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { InjectRepository } from '@nestjs/typeorm';
import { Repository } from 'typeorm';
import { FileUpload } from './entities/file-upload.entity';
import { ApplicationsService } from '../applications/applications.service';
import Multer from 'Multer';
import { Request } from 'express';

Check warning on line 10 in apps/backend/src/file-upload/file-upload.service.ts

View workflow job for this annotation

GitHub Actions / pre-deploy

'Request' is defined but never used

@Injectable()
export class FileUploadService {
Expand Down

0 comments on commit 8d6d484

Please sign in to comment.