Sebastian Stehle

Results 240 comments of Sebastian Stehle

Closed due to inactivity

Afaik it has never been implemented.

## Step 1 Initialize the client First you have to download the official SDK: https://www.nuget.org/packages/Notifo.SDK You can initialize it like this: ``` INotifoClient client = NotifoClientBuilder.Create() .SetApiKey("YOUR_API_KEY") // .SetApiUrl(ServerUrl) //...

Notifo has a hierarchical topic system. For Example ``` products/ products/shoes products/shoes/nike ``` So you subscribe the user to whatever he is interested, lets say he wants to be notified...

Hi, almost every installation uses some kind of authentication provider like auth0, the password is only meant as a workaround. Therefore there is no such feature.

So you are using RabbitMQ as a backbone for events?

I had a look to the code and I think right here a log statement could help: https://github.com/Squidex/libs/blob/main/messaging/Squidex.Messaging.RabbitMq/RabbitMqSubscription.cs#L51 I will provide that asap. Perhaps it helps. We could also think...

I have pushed a new version with the improved logging.

There is actually no good reason, I just use the dev release all the time myself ;) Lets focus on your bug and then I can make a new release.

Edit: I got my use case working like that: ``` export function withRouterEvents(componentDef: ComponentDef): void { const originalOnInit = componentDef.onInit; (componentDef as any).onInit = function () { if (originalOnInit) {...