From ba37f8a3f4cb56226d6bc9c6b0b44b32c2969a2c Mon Sep 17 00:00:00 2001 From: Thibault Dockx <thibault.dockx@fusiondirectory.org> Date: Thu, 20 Feb 2025 11:02:31 +0000 Subject: [PATCH] :sparkles: orchestrator plugin Dev Manual - orchetrator plugin 4 --- .../development/orchDevPlugin.rst | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/source/fusiondirectory-orchestrator/development/orchDevPlugin.rst b/source/fusiondirectory-orchestrator/development/orchDevPlugin.rst index 49f160d..a5ad17d 100644 --- a/source/fusiondirectory-orchestrator/development/orchDevPlugin.rst +++ b/source/fusiondirectory-orchestrator/development/orchDevPlugin.rst @@ -80,9 +80,8 @@ The **POST method** is used to create new records. /** * Handles POST requests. * - * This method is responsible for creating new records in the system. - * It is typically used when an administrator or an external service - * submits new data to be stored (e.g., adding a new task to LDAP). + * This method is responsible for creating new records based on your data logic. + * You might have developed a plugin with its own LDAP schema. * * @param array|null $data Input data to be processed and stored. * @return array The response indicating success or failure. @@ -103,9 +102,7 @@ The **DELETE method** removes existing records. /** * Handles DELETE requests. * - * This method removes existing records from the system. - * It is used when an administrator or system process - * wants to delete a task or configuration from the directory. + * This method removes existing records based on your data handling logic. * * @param array|null $data Information about what should be deleted. * @return array The response confirming the deletion. -- GitLab