fix(medusa): Normalize discount code before querying DB (#2224)

**What**
Normalize discount code before querying DB

Fixes CORE-567
This commit is contained in:
Oliver Windall Juhl
2022-09-16 12:01:36 +00:00
committed by GitHub
parent f7177c9033
commit 3f73170288
7 changed files with 143 additions and 20 deletions
@@ -137,7 +137,7 @@ module.exports = async (connection, data = {}) => {
const freeShippingDiscount = manager.create(Discount, {
id: "free-shipping-discount",
code: "free-shipping",
code: "FREE-SHIPPING",
is_dynamic: false,
is_disabled: false,
rule_id: "free-shipping-rule",