Guillaume Canu

Results 6 comments of Guillaume Canu

Same issue on Angular 13. I hope the fix will be available soon !

thx @offwork, I solved my problem but I had to give up ngneat/tailwind ! Anyway, thx for ur awesome work !

We should have a very simple feature like this : ```javascript User.virtual('password').set((value, done) => { encryptValueWithAsyncFunction .then(response => done(null, value)) .catch(reason => done(reason)) ; }) ```

@heisian Ok my mistake, I didn't take care of setter use...

Today, async getters and setters are very important to me. I need to send HTTP requests from getters and setters to decrypt/encrypt fields with proprietary encryption methods, and currently, there...