docs: freshness check for some guides (#13000)

This commit is contained in:
Shahed Nasser
2025-07-21 17:36:37 +03:00
committed by GitHub
parent 798ac0068e
commit 0a43009580
5 changed files with 18 additions and 17 deletions
@@ -8,7 +8,7 @@ In the upcoming chapters, you'll follow step-by-step guides to build custom feat
By following these guides, you'll add brands to the Medusa application that you can associate with products.
To build a custom feature in Medusa, you need three main tools:
To build a custom feature in Medusa, you need three main [Framework](../../fundamentals/framework/page.mdx) tools:
- [Module](../../fundamentals/modules/page.mdx): a package with commerce logic for a single domain. It defines new tables to add to the database, and a class of methods to manage these tables.
- [Workflow](../../fundamentals/workflows/page.mdx): a tool to perform an operation comprising multiple steps with built-in rollback and retry mechanisms.
@@ -8,10 +8,10 @@ In the previous chapters, you've customized your Medusa application to [add bran
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](../../fundamentals/admin/widgets/page.mdx), on existing pages.
- Add new pages, called [UI Routes](../../fundamentals/admin/ui-routes/page.mdx).
- Insert components, called [widgets](../../fundamentals/admin/widgets/page.mdx), into existing pages. For example, you can add a widget to the product details page that shows the product's brand.
- Add new pages, called [UI Routes](../../fundamentals/admin/ui-routes/page.mdx). For example, you can create a new page in the dashboard that lists all brands in the store.
From these customizations, you can send requests to custom API routes, allowing admin users to manage custom resources on the dashboard
Within these customizations, you can send requests to custom API routes, allowing admin users to view and manage custom resources on the dashboard.
---