Adds admin invites API to medusa-js (#922)

This commit is contained in:
Oliver Windall Juhl
2021-12-14 15:34:23 +01:00
committed by GitHub
parent 4ffe50a798
commit 006e67eea1
3 changed files with 42 additions and 0 deletions

View File

@@ -15,14 +15,17 @@ export default (container, config) => {
return app
}
// Admin
export * from "./routes/admin/auth"
export * from "./routes/admin/customers"
export * from "./routes/admin/discounts"
export * from "./routes/admin/draft-orders"
export * from "./routes/admin/invites"
export * from "./routes/admin/notes"
export * from "./routes/admin/notifications"
export * from "./routes/admin/store"
export * from "./routes/admin/variants"
// Store
export * from "./routes/store/auth"
export * from "./routes/store/carts"
export * from "./routes/store/collections"