From 89f40759f2610e9302fe21cb2cdd87418fc4d01b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?SAL=C4=B0H=20=C3=96ZKARA?= Date: Tue, 17 Feb 2026 16:35:59 +0300 Subject: [PATCH] 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. --- docs/en/low-code/custom-endpoints.md | 2 +- docs/en/low-code/foreign-access.md | 2 +- docs/en/low-code/interceptors.md | 2 +- docs/en/low-code/model-json.md | 2 +- docs/en/low-code/reference-entities.md | 4 ++-- docs/en/low-code/scripting-api.md | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/en/low-code/custom-endpoints.md b/docs/en/low-code/custom-endpoints.md index d80d8e8802..02f40d11f7 100644 --- a/docs/en/low-code/custom-endpoints.md +++ b/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." } ``` diff --git a/docs/en/low-code/foreign-access.md b/docs/en/low-code/foreign-access.md index 795463bb3c..024db175da 100644 --- a/docs/en/low-code/foreign-access.md +++ b/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." } ``` diff --git a/docs/en/low-code/interceptors.md b/docs/en/low-code/interceptors.md index ccadcb438d..6ec2415a41 100644 --- a/docs/en/low-code/interceptors.md +++ b/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." } ``` diff --git a/docs/en/low-code/model-json.md b/docs/en/low-code/model-json.md index 1b82f76797..1e87c3c0dc 100644 --- a/docs/en/low-code/model-json.md +++ b/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." } ``` diff --git a/docs/en/low-code/reference-entities.md b/docs/en/low-code/reference-entities.md index 453eca27f2..ae9a062bcd 100644 --- a/docs/en/low-code/reference-entities.md +++ b/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 diff --git a/docs/en/low-code/scripting-api.md b/docs/en/low-code/scripting-api.md index 286a918586..ba7b9ffde2 100644 --- a/docs/en/low-code/scripting-api.md +++ b/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`)