Toni
Toni
Just in case someone didn't know, creator of this awesome library that has saved me and thousands of developers thousands of work-hours and thus made my life easier, is from...
Perhaps `/entity/:id/something` doesn't work for `ManyToOne` relations. You could add the join in your controller: ``` @Crud({ ... query: { join: { owner: { eager: true }, }, }) ```...
Sad and angry here. So glad you're ok though! Finland is doing everything we can to help. Wish there was more we could do without the fear of nuclear apocalypse....
> > Sad and angry here. So glad you're ok though! > > Finland is doing everything we can to help. Wish there was more we could do without the...
I would like this too. `CrudAuth` could add user to `req`? Of course we can use `@Req()` in the controller but now if we want to only override a service...
Seems it's a common problem with many libraries at the moment. I know Angularfire2 had the same issue, and they fixed it by moving the module structure around a bit...
Problems with the Angular wrapper too. The Y-coordinate is calculated incorrectly for the first drag. It's like you'd be dragging 200px above where you're actually dragging. Drop first time and...
Resizing the window fixes this. So some initialization that also happens on resize happens too early. This perhaps? Wonder if there's a way to call invalidateContainerRectangles from Angular.. ``` window.addEventListener('resize',...
I'm also seeing weird behavior on the very first time you drag. Could be from smooth-dnd, because after I drag something, then flip a flag which removes my whole component...
Same issue. Got rid of the error by wrapping the engine call in Zone.current.fork with req & res. Req never seems to have cookies at this point though, so we...