Skip to content

Commit 77f9819

Browse files
committed
Improve passing data plugins guide introduction
1 parent 31f10ec commit 77f9819

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docusaurus/docs/dev-docs/plugins/guides/pass-data-from-server-to-admin.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ displayed_sidebar: devDocsSidebar
77

88
# How to pass data from server to admin panel with a Strapi plugin
99

10-
Strapi is **headless** <HeadlessCms />. The admin panel is completely separate from the server.
10+
Plugins in Strapi help you add additional features to the existing core set of built-in features. They can be used to extend the API, customize the admin panel, and more. In many cases, you would like your plugin to store data for later retrieval, and to access this data.
1111

1212
When [developing a Strapi plugin](/dev-docs/plugins/developing-plugins) you might want to pass data from the `/server` to the `/admin` folder. Within the `/server` folder you have access to the Strapi object and can do database queries whereas in the `/admin` folder you can't.
1313

14+
Strapi is **headless** <HeadlessCms />. The admin panel is completely separate from the server.
15+
1416
Passing data from the `/server` to the `/admin` folder can be done using the admin panel's Axios instance:
1517

1618
```mermaid

0 commit comments

Comments
 (0)