mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
fix(api): missing OpenAPI route tags
This commit is contained in:
parent
290cc3d046
commit
d6af6f9cba
6 changed files with 10 additions and 3 deletions
|
|
@ -6,6 +6,7 @@ import {
|
|||
UseFilters,
|
||||
UseGuards,
|
||||
} from "@nestjs/common";
|
||||
import { ApiTags } from "@nestjs/swagger";
|
||||
import type { Response } from "express";
|
||||
import { User } from "../users/user.entity";
|
||||
import { AuthSession } from "./auth-session.entity";
|
||||
|
|
@ -19,6 +20,7 @@ import {
|
|||
} from "./guards/auth-strategies.guard";
|
||||
import { SpotifyAuthFilter } from "./spotify.filter";
|
||||
|
||||
@ApiTags("auth")
|
||||
@Controller("api/v1/auth")
|
||||
export class AuthController {
|
||||
constructor(private readonly authService: AuthService) {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue