Browse Source

Rename Low-Code Module to Low-Code System in docs

Replace "ABP Low-Code Module" with "ABP Low-Code System" across low-code documentation to reflect the naming change. Updated the doc-seo JSON descriptions and a couple of in-page references. Affected files: docs/en/low-code/custom-endpoints.md, docs/en/low-code/foreign-access.md, docs/en/low-code/interceptors.md, docs/en/low-code/model-json.md, docs/en/low-code/reference-entities.md, docs/en/low-code/scripting-api.md.
pull/24925/head
SALİH ÖZKARA 1 month ago
parent
commit
89f40759f2
  1. 2
      docs/en/low-code/custom-endpoints.md
  2. 2
      docs/en/low-code/foreign-access.md
  3. 2
      docs/en/low-code/interceptors.md
  4. 2
      docs/en/low-code/model-json.md
  5. 4
      docs/en/low-code/reference-entities.md
  6. 4
      docs/en/low-code/scripting-api.md

2
docs/en/low-code/custom-endpoints.md

@ -1,7 +1,7 @@
```json
//[doc-seo]
{
"Description": "Define custom REST API endpoints with JavaScript handlers in the ABP Low-Code Module. Create dynamic APIs without writing C# controllers."
"Description": "Define custom REST API endpoints with JavaScript handlers in the ABP Low-Code System. Create dynamic APIs without writing C# controllers."
}
```

2
docs/en/low-code/foreign-access.md

@ -1,7 +1,7 @@
```json
//[doc-seo]
{
"Description": "Control access to related entities through foreign key relationships using Foreign Access in the ABP Low-Code Module."
"Description": "Control access to related entities through foreign key relationships using Foreign Access in the ABP Low-Code System."
}
```

2
docs/en/low-code/interceptors.md

@ -1,7 +1,7 @@
```json
//[doc-seo]
{
"Description": "Add custom business logic to dynamic entity CRUD operations using Interceptors in the ABP Low-Code Module. Validate, transform, and react to data changes with JavaScript."
"Description": "Add custom business logic to dynamic entity CRUD operations using Interceptors in the ABP Low-Code System. Validate, transform, and react to data changes with JavaScript."
}
```

2
docs/en/low-code/model-json.md

@ -1,7 +1,7 @@
```json
//[doc-seo]
{
"Description": "Define dynamic entities using model.json in the ABP Low-Code Module. Learn about entity properties, enums, foreign keys, validators, UI configuration, and migration requirements."
"Description": "Define dynamic entities using model.json in the ABP Low-Code System. Learn about entity properties, enums, foreign keys, validators, UI configuration, and migration requirements."
}
```

4
docs/en/low-code/reference-entities.md

@ -1,7 +1,7 @@
```json
//[doc-seo]
{
"Description": "Link dynamic entities to existing C# entities like IdentityUser using Reference Entities in the ABP Low-Code Module."
"Description": "Link dynamic entities to existing C# entities like IdentityUser using Reference Entities in the ABP Low-Code System."
}
```
@ -13,7 +13,7 @@ Reference Entities allow you to create foreign key relationships from dynamic en
Dynamic entities defined via [Attributes](fluent-api.md) or [model.json](model-json.md) normally reference other dynamic entities. However, you may need to link to entities like ABP's `IdentityUser`, `Tenant`, or your own C# entity classes. Reference entities make this possible.
Unlike dynamic entities, reference entities are **read-only** from the Low-Code Module's perspective — they don't get CRUD pages or APIs. They are used solely for:
Unlike dynamic entities, reference entities are **read-only** from the Low-Code System's perspective — they don't get CRUD pages or APIs. They are used solely for:
* **Foreign key lookups** — dropdown selection in UI forms
* **Display values** — showing the referenced entity's display property in grids

4
docs/en/low-code/scripting-api.md

@ -1,13 +1,13 @@
```json
//[doc-seo]
{
"Description": "Server-side JavaScript Scripting API for ABP Low-Code Module. Query, filter, aggregate data and perform CRUD operations with database-level execution."
"Description": "Server-side JavaScript Scripting API for ABP Low-Code System. Query, filter, aggregate data and perform CRUD operations with database-level execution."
}
```
# Scripting API
The Low-Code Module provides a server-side JavaScript scripting engine for executing custom business logic within [interceptors](interceptors.md) and [custom endpoints](custom-endpoints.md). Scripts run in a sandboxed environment with access to a database API backed by EF Core.
The Low-Code System provides a server-side JavaScript scripting engine for executing custom business logic within [interceptors](interceptors.md) and [custom endpoints](custom-endpoints.md). Scripts run in a sandboxed environment with access to a database API backed by EF Core.
## Unified Database API (`db`)

Loading…
Cancel
Save