Jean-Thierry Kéchichian

Results 106 comments of Jean-Thierry Kéchichian

Not sure it's a good thing, as it is the buttons are not only action buttons but also states info, so we can see clearly the tenant states and what...

@mariojsnunes At least you may need to also use `ValidateAsync()`. await contentManager.UpdateAsync(contentItem); var result = await contentManager.ValidateAsync(contentItem); if (result.Succeeded) { await contentManager.PublishAsync(contentItem); } Hmm, here some code I'm using var...

Yes we have services that inject `IDistributedCache`which by default is a `MemoryDistributedCache`, same interface but memory only. For example the document manager and the dynamic cache. Then the redis cache...

Hmm, maybe one solution would be to register at the tenant level your distributed cache before we register the `MemoryDistributedCache` so that our services will resolve this last one, we...

The default Order value is 0, so normally a value of -1 would be sufficient.

@rserj Yes if you have a stateless config e.g. shell settings coming from database and enabled the Tenant.Distributed feature needing e.g a concrete implemenation of a distributed cache e.g. Redis...

@CrestApps Yes I added some comments in your PR, open to any suggestion but there are many scenario, see my comments in your PR. For now, here it works as...

Also, just to say that here it only uses `ISiteService` for the pager `PageSize`.

Yes I understand. I also thought about a default value in the `Pager` class itself. As said there are many scenario, for example do we want all admin settings configurable?...