Skip to content

Commit 350ae1b

Browse files
committed
chore: Update ApiTags decorator in KeyringsController to 'core/keyrings'
1 parent 78be5e5 commit 350ae1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { ApiBasicAuth, ApiBearerAuth } from '@nestjs/swagger';
77

88
@Public()
99
@Controller()
10-
@ApiBearerAuth(null)
10+
@ApiBearerAuth()
1111
// @see https://stackoverflow.com/questions/67314808/how-to-disable-security-for-a-specific-controller-method-in-nestjs-swagger
1212
export class AppController extends AbstractController {
1313
constructor(private readonly appService: AppService) {

src/core/keyrings/keyrings.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { PartialProjectionType } from '~/_common/types/partial-projection.type';
1414
import { KeyringsService } from '~/core/keyrings/keyrings.service';
1515
import { KeyringsCreateDto, KeyringsDto } from '~/core/keyrings/_dto/keyrings.dto';
1616

17-
@ApiTags('core')
17+
@ApiTags('core/keyrings')
1818
@Controller('keyrings')
1919
export class KeyringsController extends AbstractController {
2020
protected static readonly projection: PartialProjectionType<KeyringsDto> = {

0 commit comments

Comments
 (0)