forked from medusajs/medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: revise admin customization pages (medusajs#10466)
* docs: revise admin customization pages * fix prerequisites link * apply lint
- Loading branch information
1 parent
0a077d4
commit 21b0e0c
Showing
9 changed files
with
538 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -236,7 +236,7 @@ const step1 = createStep( | |
) | ||
|
||
return new StepResponse(ids, prevData) | ||
}, | ||
} | ||
) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 17 additions & 4 deletions
21
www/apps/book/app/learn/customization/customize-admin/page.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,23 @@ | ||
export const metadata = { | ||
title: `${pageNumber} Customize Admin to Add Brands`, | ||
title: `${pageNumber} Customize Medusa Admin Dashboard`, | ||
} | ||
|
||
# {metadata.title} | ||
|
||
In the next chapters, you'll continue with the brands example to learn how to customize the Medusa Admin to: | ||
In the previous chapters, you've customized your Medusa application to [add brands](../custom-features/module/page.mdx), [expose an API route to create brands](../custom-features/api-route/page.mdx), and [linked brands to products](../extend-features/define-link/page.mdx). | ||
|
||
- Show a product's brand on its details page using a widget. | ||
- Add a page showing the list of brands in your application using a UI route. | ||
After customizing and extending your application with new features, you may need to provide an interface for admin users to utilize these features. The Medusa Admin dashboard is extendable, allowing you to: | ||
|
||
- Insert components, called [widgets](../../advanced-development/admin/widgets/page.mdx), on existing pages. | ||
- Add new pages, called [UI Routes](../../advanced-development/admin/ui-routes/page.mdx). | ||
|
||
From these customizations, you can send requests to custom API routes, allowing admin users to manage custom resources on the dashboard | ||
|
||
--- | ||
|
||
## Next Chapters: View Brands in Dashboard | ||
|
||
In the next chapters, you'll continue with the brands example to: | ||
|
||
- Add a new section to the product details page that shows the product's brand. | ||
- Add a new page in the dashboard that shows all brands in the store. |
Oops, something went wrong.