From 599c0f8cfca963ec97c4cdccc1417ac52f1a2614 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Thu, 10 Nov 2022 20:53:44 +0100 Subject: [PATCH] docs: Change data to dynamic data for folder structure --- packages/docs/pages/build-integrations/folder-structure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/docs/pages/build-integrations/folder-structure.md b/packages/docs/pages/build-integrations/folder-structure.md index 37c445ad..6ed85e4a 100644 --- a/packages/docs/pages/build-integrations/folder-structure.md +++ b/packages/docs/pages/build-integrations/folder-structure.md @@ -34,7 +34,7 @@ Here, you can see the folder structure of an example app. We will briefly walk t ├── assets ├── auth ├── common -├── data +├── dynamic-data ├── index.ts └── triggers ``` @@ -59,9 +59,9 @@ As mentioned above, actions are the steps we place after a trigger. Actions are The common folder is where you can put utilities or shared functionality used by other folders like triggers, actions, auth, etc. -## Data +## Dynamic data -Sometimes you need to get some dynamic data with the user interface to set up the triggers or actions. For example, to use the new issues trigger from the GitHub app, we need to select the repository we want to track for the new issues. This selection should load the repository list from GitHub. This is where the data folder comes into play. You can put your data fetching logic here when it doesn't belong to triggers or actions but is used to set up triggers or actions. +Sometimes you need to get some dynamic data with the user interface to set up the triggers or actions. For example, to use the new issues trigger from the GitHub app, we need to select the repository we want to track for the new issues. This selection should load the repository list from GitHub. This is where the data folder comes into play. You can put your data fetching logic here when it doesn't belong to triggers or actions but is used to set up triggers or actions in the Automatisch user interface. ## Assets