Hi,
We will enhance the ABP Suite, you can use the abp add-module Volo.Blogging --with-source-code command to install the module with source code.
Hi,
You can override the CreateFilterExpression method of DbContext:
protected override Expression<Func<TEntity, bool>> CreateFilterExpression<TEntity>()
{
if (typeof(TEntity) == typeof(OrganizationUnit))
{
using (DataFilter.Disable<IMultiTenant>())
{
return base.CreateFilterExpression<TEntity>();
}
}
return base.CreateFilterExpression<TEntity>();
}
This way needs your DbContext to replace IIdentityProDbContext
Hi,
We have document you can check: https://docs.abp.io/en/commercial/latest/themes/lepton-x/angular#customization
Hi,
The suite is working.
Hi,
Can you share the full logs(AuthServer and WebPublic)? thanks.
Hi,
The project you're shared is HttpApi not HttpApi.Host.
You can look up which project references the Volo.Abp.Account.Pro.Public.Web.OpenIddict package and custom TokenController in it.
Hi,
We updating the abp.io platform, and it should be working later.
Hi,
Can you create a new project to reproduce it and share with me? I will check it. thanks. shiwei.liang@volosoft.com
Hi,
Is this something that can be built into the current ABP.io Blob storage wrapper?
We have no plan to implement this feature yet.
For large files, it is recommended that you upload directly from the browser to the Azure Blob,
Here are some links:
https://techcommunity.microsoft.com/t5/apps-on-azure-blog/azure-storage-blob-upload-from-browser/ba-p/392687 https://learn.microsoft.com/en-us/azure/storage/blobs/quickstart-blobs-javascript-browser