Adds decoration for admin endpoints

This commit is contained in:
olivermrbl
2020-08-25 13:24:35 +02:00
parent 00a2ff0015
commit ee00bd27e4
4 changed files with 21 additions and 9 deletions
@@ -3,11 +3,12 @@ export default async (req, res) => {
try {
const customerService = req.scope.resolve("customerService")
let customer = await customerService.retrieve(id)
customer = customerService.decorate(customer, [
"email",
"first_name",
"last_name",
])
customer = await customerService.decorate(
customer,
["email", "payment_methods", "has_account", "shipping_addresses"],
["orders"]
)
res.json({ customer })
} catch (err) {
throw err
@@ -3,9 +3,14 @@ export default async (req, res) => {
try {
const orderService = req.scope.resolve("orderService")
const customerService = req.scope.resolve("customerService")
let order = await orderService.retrieve(id)
order = await orderService.decorate(order, [], ["region"])
order = await orderService.decorate(order, [], ["region", "customer"])
if (order.customer_id) {
order.customer = await customerService.retrieve(order.customer_id)
}
res.json({ order })
} catch (error) {
@@ -5,7 +5,13 @@ export default async (req, res) => {
const data = await profileService.retrieve(profile_id)
res.status(200).json({ shipping_profile: data })
const profile = await profileService.decorate(
data,
["name"],
["products", "shipping_options"]
)
res.status(200).json({ shipping_profile: profile })
} catch (err) {
throw err
}