medusa-customer-queries
v1.5.0
Published
Medusa plugin to add customer queries functionality in the medusa.
Downloads
12
Maintainers
Readme
Medusa Customer Queries
Medusa plugin to add customer queries functionality in the medusa.
Features
- Storefront api to submit the query.
- Admin panel ui to show customer query.
Prerequisites
How to Install
1. Run the following command in the directory of the Medusa backend:
npm install medusa-customer-queries
2. In medusa-config.js
add the following at the end of the plugins
array:
const plugins = [
// ...
{
resolve: `medusa-customer-queries`,
options: {
enableUI: true,
},
},
];
Test the Plugin
1. Run the following command in the directory of the Medusa backend to run the backend:
npm run start