Adds dynamic coupon codes and segment plugin
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { Router } from "express"
|
||||
import bodyParser from "body-parser"
|
||||
import { Validator, MedusaError } from "medusa-core-utils"
|
||||
|
||||
export default (container) => {
|
||||
const route = Router()
|
||||
|
||||
route.post("/discount-code", bodyParser.json(), async (req, res) => {
|
||||
const schema = Validator.object().keys({
|
||||
discount_code: Validator.string().required(),
|
||||
})
|
||||
|
||||
const { value, error } = schema.validate(req.body)
|
||||
if (error) {
|
||||
throw new MedusaError(MedusaError.Types.INVALID_DATA, error.details)
|
||||
}
|
||||
|
||||
const discountGenerator = req.scope.resolve("discountGeneratorService")
|
||||
const code = await discountGenerator.generateDiscount(value.discount_code)
|
||||
|
||||
res.json({
|
||||
code
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
return route
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user