Hi,
You can override these methods and not update security token
HI,
It depends on business logic, in your business scenario, if the creator must be the author, that's ok. but I do not recommend using audit fields as business fields
Hi,
Seems you need to add the module manually.
Install
Volo.Abp.BlobStoring.Database.Domain.Shared,
Volo.Abp.BlobStoring.Database.Domain
Volo.Abp.BlobStoring.EntityFrameworkCore
to Domain.Shared, Domain and EntityFrameworkCore project.
[DependsOn(typeof(BlobStoringDatabaseDomainModule))]
public class ...DomainModule : AbpModule
....
[DependsOn(typeof(BlobStoringDatabaseEntityFrameworkCoreModule))]
public class ...EntityFrameworkCoreModule : AbpModule
....
Open ...DbContext class
protected override void OnModelCreating(ModelBuilder builder)
{
.......
builder.ConfigureBlobStoring();
}
Then Add & Apply migrations.
Hi,
I can't reproduce the problem, can you share a project to reproduce? shiwei.liang@volosoft.com
Can you use chrome/edge open the pdf file?
hi,
I will check it out.
Is there any error logs?
Hi,
https://docs.abp.io/en/abp/latest/Exception-Handling#http-status-code-mapping
You can throw an AbpAuthorizationException exception and ABP will handle it.
I guess you are using HTTP.
Try
environment.prod.ts
oAuthConfig: {
issuer: 'https://localhost:44305',
redirectUri: baseUrl,
clientId: 'MyProjectName_App',
responseType: 'code',
scope: 'offline_access openid profile role email phone MyProjectName',
requireHttps: false // this line
},