Shlomi Levi

Results 14 comments of Shlomi Levi

@BioPhoton I split them into two parts: **dialog flow** and **create flow**. I don't want to combine them because I can run **create flow** without the dialog flow in other...

@BioPhoton can you implement `tapResponse` function from `ngrx/component-store`? https://github.com/ngrx/platform/blob/master/modules/component-store/src/tap-response.ts Because right now, the actions lead to error-boilerplate and the file is too long: see [stackblitz example I made](https://stackblitz.com/edit/angular-ivy-rve5gk?file=src%2Fapp%2Fapp-state.service.ts,src%2Fapp%2Fapp.component.ts) ``` readonly...

Another issue I have is to run another action and wait for a response: [You can see it in stackblitz example I made](https://stackblitz.com/edit/angular-ivy-4ytug9?file=src%2Fapp%2Fapp-state.service.ts,src%2Fapp%2Fapi.service.ts) From action1 I want to trigger action2...

One more thing: when error is throw the entire action is stopped (can't emit the action again) unless using `catchError` in the pipeline: ``` saveData() { throw new Error('bad'); ......

+1, same here. Can I do request to get token just with username and password without Authorization header?

[This Auth header is optional in case](https://tools.ietf.org/html/rfc6749#section-4.3.2): **If** the client type is confidential or the client was issued client credentials (or assigned other authentication requirements), the client MUST authenticate with...

There is no much a different here.. if I use `requireClientAuthentication,` the oauth2 will get the Authorization from the body instead of header. like so: ``` if (!this.isClientAuthenticationRequired(grantType)) { if(request.body.client_id)...

@mgechev basically I think it's should be two versions of the extension. one for offline the other for online. because the offline version will have to contain the font in...

@sir-captainmorgan21 Yes the solution is working for me. I clone the repo then I add `analyzeSourceFiles` and `targetDefaults` and run `nx reset` and now it's compile. Thanks. For me, this...