Yes, you're right. The PR was made to the dev branch which will be shipped in v7.0.
So, I've picked those changes to the v6.0, it'll be included in the closest patch version (6.0.1). https://github.com/abpframework/abp/pull/14293
Hi @yasin.hallak.89@gmail.com
You can't get the source-code of HTML demo for now because of some limitations. But we're planning to make it accessible in the future.
But. anything is trimmed from application bundles and they include everything that is required for those components. So you can inspect that demo, get the plain HTML and use it in your application without limitation. All of them should be working on your application without making any CSS change.
You can either log them manually or add to
EntityHistorySelectorsin AbpAuditingOptions.@gterdem I have decorated the classes with [Audited] which should be the same as with the entityhistoryselectors isn't it?
Yes, both them mean same thing. You can either use attributes or manage all of them from selectors.
Attribute has higher priority, if you define attribuıte it'll accepted: https://github.com/abpframework/abp/blob/c78497a4cebf1ca39e355b6b62185db4a291dc80/framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/AuditingHelper.cs#L109
Selector has the lowest priority and it's checked at the end: https://github.com/abpframework/abp/blob/c78497a4cebf1ca39e355b6b62185db4a291dc80/framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/AuditingHelper.cs#L120
So, yes both of them can be used for the same purpose.
We've planned a new feature for the chat module for the deletion of chat messages for a future milestone.
But in your version, you can get the source code of chat module and customize it according to your requirements.
Hi @webking-abp1
The field named EditionEndDateUtc is used together with webhook responses by Payment module. It can be configured like below:
https://docs.abp.io/en/commercial/latest/modules/saas#tenant-edition-subscription
So, If there is an EditionEndDateUtc data, that means that tenant achieved that edition with a payment and it can be only changed by a payment provider like canceling payment or renewing payments, or a refund. So, updating EditionEndDateUtc manually brings other responsibilities like updating it on each payment status change.
Managing EditionEndDateUtc is not recommended by us and I recommend you use a new field to manage your logic. You can use Object Extensions to define new properties to the Tenant entity.
You can still use the existing EditionEndDateUtc property but you should get its responsibility and update it on each payment action.
Ok, we'll investigate the breadcrumb issue.
If you mean a Tenant while saying customer, you can use the following steps.
I assumed you already created Plan and Gateway Plan but I'll include them in the first steps.
Create a plan. (in this case I use name 'Plan for ATT Blue')

Click actions menu and go to Manage Gateway Plans and add a gateway plan for your product from stripe.
Go to Saas > Editions from the menu and create or edit an edition. You'll see a dropdown for Plan. Choose the newly created 'Plan for ATT Blue'.
Configure<AbpSaasPaymentOptions>(options =>
{
options.IsPaymentSupported = true;
});
After completing these steps, you're ready to prepare a payment for a tenant.
Create a page and put a form with submit button. When a user submitted, you need to start a subscription with the following method:
public class IndexModel : PageModel
{
protected ISubscriptionAppService SubscriptionAppService { get; }
protected ICurrentTenant CurrentTenant { get; }
public IndexModel(
ISubscriptionAppService subscriptionAppService,
ICurrentTenant currentTenant)
{
SubscriptionAppService = subscriptionAppService;
CurrentTenant = currentTenant;
}
public async Task<IActionResult> OnPostAsync(Guid editionId)
{
var paymentRequest = await SubscriptionAppService.CreateSubscriptionAsync(editionId, CurrentTenant.GetId());
return LocalRedirectPreserveMethod("/Payment/GatewaySelection?paymentRequestId=" + paymentRequest.Id);
}
}
Or you can use a static editionId instead of posting that parameter from a form.
Yes, it'll be included in v6.0 and it'll be released very soon.
We completed all the configurations in the template and add a section to the documentation about iOS configuration. With the new version, SecureStorage will be used in startup templates.
Go to you .AtuhServer or .HttpApi.Host project and find Module class of that project.
- Configure that project's layout in
ConfigureServicesmethod:Configure<LeptonXThemeMvcOptions>(options => { options.ApplicationLayout = LeptonXMvcLayouts.TopMenu; });I do not have these projects in the Blazor Server non-tiered solution. But I suppose I have to do this in the .HttpApi project.
Oh, sorry I missed that you're using Blazor-Server single project. So, you should make that MVC configuration in your Blazor.Server project module file.