Skip to content

Commit

Permalink
Merge pull request #14349 from Makkalay/master
Browse files Browse the repository at this point in the history
fix: export cont REQUEST_METHOD_MAP from router-method-factory
  • Loading branch information
kamilmysliwiec authored Dec 27, 2024
2 parents 7892889 + 686d8ec commit 8950ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/helpers/router-method-factory.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HttpServer } from '@nestjs/common';
import { RequestMethod } from '@nestjs/common/enums/request-method.enum';

const REQUEST_METHOD_MAP = {
export const REQUEST_METHOD_MAP = {
[RequestMethod.GET]: 'get',
[RequestMethod.POST]: 'post',
[RequestMethod.PUT]: 'put',
Expand Down

0 comments on commit 8950ef0

Please sign in to comment.