Umed Khudoiberdiev
Umed Khudoiberdiev
I have abstract entities and to test them (and how do they work with the repository) I need to create concrete entities, but only for test purposes (e.g. only test...
I think you'll have same issue with express: ```ts const e = express(); e.head("/test", function(req, res, next) { console.log("head"); next(); }); e.get("/test", function(req, res, next) { console.log("get"); res.send(""); next(); });...
but you didn't call `next` method. You have to call next method or your middleware that goes after your method won't work.
no, not response-send related things. If we remove next call middleware executed after controller actions wont work. For example you want simple logging. If you to log result of execution...
Not sure if it is correct way of doing things
Okay, if you think so, then lets remove this functionality. Can you please do that?
> "why to use routing-controllers" article about it, this would be awesome :) > docs agree, it needs improvements and simplifying. Need suggestions how we can simplify it + someone...
> Use GitBook instead of plain readme on github TBH I don't like gitbook, never liked reading docs on github. Gitbook docs seems bad UX for me. Maybe better idea...
@Diluka I added few more tags to the project description...