routing-controllers icon indicating copy to clipboard operation
routing-controllers copied to clipboard

Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage in Express / Koa using TypeScript and Routing Controllers Framework.

Results 145 routing-controllers issues
Sort by recently updated
recently updated
newest added

### Description I use a UploadedFile decorator and multer to store the file on disk. But I always get the error: ``` Error: Can't set headers after they are sent....

type: fix
status: needs triage

Bumps [lint-staged](https://github.com/okonet/lint-staged) from 10.2.11 to 13.0.3. Release notes Sourced from lint-staged's releases. v13.0.3 13.0.3 (2022-06-24) Bug Fixes correctly handle git stash when using MSYS2 (#1178) (0d627a5) v13.0.2 13.0.2 (2022-06-16) Bug...

dependencies

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0. Release notes Sourced from jsdom's releases. Version 16.7.0 Added AbortSignal.abort(). (ninevra) Added dummy x and y properties to the return value of getBoundingClientRect(). (eiko)...

dependencies

### Description I want use like read.me. but not。 **Minimal code-snippet showcasing the problem** ```ts @Get("/users") getUsers(@QueryParam("limit") limit: number) { } ``` ### Expected behavior limit is number ### Actual...

type: fix
status: needs triage

#### Some code to reproduce issue: ```typescript enum LabelType { Sent = 'Sent', Inbox = 'Inbox' } class Query { @IsEnum(LabelType) label: LabelType; } @JsonController() export class ThreadController { @Get('/threads')...

type: fix
status: needs triage

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.9.7 to 4.7.4. Release notes Sourced from typescript's releases. TypeScript 4.7.4 For release notes, check out the release announcement. For the complete list of fixed issues, check...

dependencies

Bumps [prettier](https://github.com/prettier/prettier) from 2.0.5 to 2.7.1. Release notes Sourced from prettier's releases. 2.7.1 🔗 Changelog 2.7.0 diff 🔗 Release note 2.6.2 🔗 Changelog 2.6.1 🔗 Changelog 2.6.0 🔗 Release note...

dependencies

Hi, Please fix [CVE-2022-24434](https://github.com/advisories/GHSA-wm7h-9275-46v2) need to make sure to update dicer to be

### Description I was trying to create a project using this package but I realised the API changed and Readme wasn't updated. ### Expected behavior To have a concise documentation...

type: fix
status: needs triage

Would the following code: ` app.get('/auth/callback', passport.authenticate('oidc', {})); ` Be equivalent to: ` @Get('/auth/callback') @UseBefore(passport.authenticate('oidc',{}) performCallback() {} ` I'm trying to implement a callback middleware on a named route using...

type: question