You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/en/Change-Logs.md
+8-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,14 @@ jQuery and ASP.NET Core + Angular versions beginning from v4.1. See
6
6
7
7
The change logs in this page are just a summary of major changes. Detailed release notes are shared on the Github repository (only available to the customers).
Copy file name to clipboardexpand all lines: docs/en/Features-Angular-Audit-Logs.md
+21-1
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,26 @@ All application service methods and MVC controller actions are automatically log
12
12
13
13
Audit log report is provided by **AuditLogAppService** class.
14
14
15
+
### Periodic Log Deletion
16
+
17
+
ASP.NET Zero has built-in periodic log deletion system. To enable it, go to `*.Application/Auditing/ExpiredAuditLogDeleterWorker.cs` and set `IsEnabled` to true;
Copy file name to clipboardexpand all lines: docs/en/Features-Angular-Subscription.md
+25
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,31 @@ When the subscription of a Tenant is expired, **SubscriptionExpirationCheckWorke
27
27
* If "**deactive tenant**" option is selected for the Edition of the Tenant, tenant will be disabled and will not be able to use the system.
28
28
* If the subscription expires for a tenant who subscribed for trial usage, the tenant will be disabled and will not be able to use the system.
29
29
30
+
#### Minimum Update Amount
31
+
32
+
Since payment systems have accepted the minimum payment amount, you may need to set the minimum payment amount according to your payment system. Settings are located in [`*.Core.Shared/AbpZeroTemplateConsts.cs`](https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Core.Shared/AbpZeroTemplateConsts.cs#L24)
33
+
34
+
```csharp
35
+
// Note:
36
+
// Minimum accepted payment amount. If a payment amount is less then that minimum value payment progress will continue without charging payment
37
+
// Even though we can use multiple payment methods, users always can go and use the highest accepted payment amount.
38
+
//For example, you use Stripe and PayPal. Let say that Stripe accepts min 5$ and PayPal accepts min 3$. If your payment amount is 4$.
39
+
// User will prefer to use a payment method with the highest accept value which is a Stripe in this case.
40
+
publicconstdecimalMinimumUpgradePaymentAmount=1M;
41
+
```
42
+
43
+
and [`angular/src/shared/AppConsts.ts`](https://github.com/aspnetzero/aspnet-zero-core/blob/dev/angular/src/shared/AppConsts.ts#L31) .
44
+
45
+
```typescript
46
+
staticreadonlyMinimumUpgradePaymentAmount=1;
47
+
```
48
+
49
+
Default value is **1**.
50
+
51
+
Payment progress will be continued without charging any amount if the payment amount is less than given value.
Copy file name to clipboardexpand all lines: docs/en/Features-Mvc-Core-Audit-Logs.md
+21-1
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,26 @@ see all details an audit log:
11
11
12
12
Audit log report is provided by **AuditLogAppService** class.
13
13
14
+
### Periodic Log Deletion
15
+
16
+
ASP.NET Zero has built-in periodic log deletion system. To enable it, go to `*.Application/Auditing/ExpiredAuditLogDeleterWorker.cs` and set `IsEnabled` to true;
Copy file name to clipboardexpand all lines: docs/en/Features-Mvc-Core-Subscription.md
+23
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,29 @@ When the subscription of a Tenant is expired, **SubscriptionExpirationCheckWorke
27
27
* If "**deactive tenant**" option is selected for the Edition of the Tenant, tenant will be disabled and will not be able to use the system.
28
28
* If the subscription expires for a tenant who subscribed for trial usage, the tenant will be disabled and will not be able to use the system.
29
29
30
+
#### Minimum Update Amount
31
+
32
+
Since payment systems have accepted the minimum payment amount, you may need to set the minimum payment amount according to your payment system. Settings are located in [`*.Core.Shared/AbpZeroTemplateConsts.cs`](https://github.com/aspnetzero/aspnet-zero-core/blob/dev/aspnet-core/src/MyCompanyName.AbpZeroTemplate.Core.Shared/AbpZeroTemplateConsts.cs#L24)
33
+
34
+
```csharp
35
+
// Note:
36
+
// Minimum accepted payment amount. If a payment amount is less then that minimum value payment progress will continue without charging payment
37
+
// Even though we can use multiple payment methods, users always can go and use the highest accepted payment amount.
38
+
//For example, you use Stripe and PayPal. Let say that Stripe accepts min 5$ and PayPal accepts min 3$. If your payment amount is 4$.
39
+
// User will prefer to use a payment method with the highest accept value which is a Stripe in this case.
40
+
publicconstdecimalMinimumUpgradePaymentAmount=1M;
41
+
```
42
+
43
+
and [`angular/src/shared/AppConsts.ts`](https://github.com/aspnetzero/aspnet-zero-core/blob/dev/angular/src/shared/AppConsts.ts#L31) .
44
+
45
+
```typescript
46
+
staticreadonlyMinimumUpgradePaymentAmount=1;
47
+
```
48
+
49
+
Default value is **1**.
50
+
51
+
Payment progress will be continued without charging any amount if the payment amount is less than given value.
In **Webhook Subscription Detail** page, you can edit, activate or deactivate a subscription. You can also see all webhook send attempts that your subscription received.
0 commit comments