Skip to content

Commit

Permalink
Add missing APITags
Browse files Browse the repository at this point in the history
  • Loading branch information
devleejb committed Nov 8, 2024
1 parent 5bd7b2a commit 7e9eae8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/src/files/files.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ import {
Redirect,
StreamableFile,
} from "@nestjs/common";
import { ApiBody, ApiOkResponse, ApiOperation, ApiResponse } from "@nestjs/swagger";
import { ApiBody, ApiOkResponse, ApiOperation, ApiResponse, ApiTags } from "@nestjs/swagger";
import { Public } from "src/utils/decorators/auth.decorator";
import { CreateUploadPresignedUrlDto } from "./dto/create-upload-url.dto";
import { FilesService } from "./files.service";
import { CreateUploadPresignedUrlResponse } from "./types/create-upload-url-response.type";
import { ExportFileRequestBody, ExportFileResponse } from "./types/export-file.type";

@ApiTags("Files")
@Controller("files")
export class FilesController {
constructor(private filesService: FilesService) {}
Expand Down

0 comments on commit 7e9eae8

Please sign in to comment.