Skip to content

Commit

Permalink
ee
Browse files Browse the repository at this point in the history
  • Loading branch information
okbug committed Nov 5, 2022
1 parent 2999f23 commit 159828e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/learn-nest/src/app.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class AppController {

// @Header('content-type', 'text/html; charset=utf-8')
@Get('/test/:id')
getTest(@Req() req: Request, @Param('id') id): string {
getTest(@Req() req: Request, @Param('id') id: string): string {
const params = getUrlParams(req.url);
console.log(params);
if (!isEmptyObject(params)) {
Expand Down

0 comments on commit 159828e

Please sign in to comment.