Aravindan Ve
Aravindan Ve
@julienw I really wanted a way to not have to order them like that (or order them at all). Because I am adding routes programmatically from a schema, and this...
> Another possibility is to declare different routers for your different concerns. In a specific router, Koa-router won't execute a middleware if there's no matching route. (I'd like to change...
For apps that bundle the library, see https://gist.github.com/aravindanve/3e13d995fac35e4a07c236b11cc432c7#bypass-bundled-script
For apps that bundle the library, see https://gist.github.com/aravindanve/3e13d995fac35e4a07c236b11cc432c7#bypass-bundled-script
@mptr This works for me: ```ts class Parent { pAttr: number; @Transform(transfromExposeAll()) child: Child; } ``` ```ts /** Exposes all nested objects when strategy is set to `excludeAll` */ export...
@Nikolay-Uvarov This worked for me with deeply nestd objects: ```ts export class Data { @Expose() @IsOptional() @Transform(transfromExposeAll()) public metadata?: Record; } ``` ```ts /** Exposes all nested objects when strategy...
@Cyberuben This worked for me: ```ts class MyClass { @Expose() @Transform(transfromExposeAll()) foo: any; public constructor(foo: any) { this.foo = foo; } } ``` ```ts /** Exposes all nested objects when...
This was fun to bypass https://gist.github.com/aravindanve/3e13d995fac35e4a07c236b11cc432c7
For apps that bundle the library, see https://gist.github.com/aravindanve/3e13d995fac35e4a07c236b11cc432c7#bypass-bundled-script
For apps that bundle the library, see https://gist.github.com/aravindanve/3e13d995fac35e4a07c236b11cc432c7#bypass-bundled-script