Hi,
How I reproduce the problem,can you provide steps? thanks.
Hi,
but i am looking for querystring version parameters?
Angular service proxies does not support API versioning yet, see : https://github.com/abpframework/abp/issues/11969
You need to use RestService to send http requests manually
Hi,
This is not a bug, this is design by identityserver
Hi,
You can replace AbpModalTagHelperService with your own implementation to build HTML code(also AbpModalHeaderTagHelperService, AbpModalFooterTagHelperService, AbpModalBodyTagHelperService): https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Modal/AbpModalTagHelperService.cs
For example:
[ExposeServices(typeof(AbpModalTagHelperService))]
public class MyAbpModalTagHelperService : AbpModalTagHelperService
{
protected override void SetContent(TagHelperContext context, TagHelperOutput output, TagHelperContent childContent)
{
//.....
base.SetContent(context, output, childContent);
}
}
Hi,
It this work for you?: (remove duplicate keys and run the DbMigrator project)
public override void InitializeCollections(IMongoDatabase database)
{
base.InitializeCollections(database);
var model = new CreateIndexModel<DatabaseBlobContainer>
(
"{ Name: 1 }",
new CreateIndexOptions { Unique = true }
);
database.GetCollection<DatabaseBlobContainer>(BlobStoringDatabaseDbProperties.DbTablePrefix + "BlobContainers").Indexes.CreateOne(model);
}
Hi,
You can use abp clean command and try again.
Hi,
Thanks for your report we will fix it. BTW, your ticket has been refunded
Hi,
Should be version 5.1.5.
Hi,
Sorry, I will check it again.