* chore: create tests * chore: models * fix: passing initial tests * test: adds integration test * test: clean up integration implementation * fix: claims * fix: brightpearl + webshipper * tests: passing * fix: update claim items * fix: adds gitignore * fix: pr comments * fix: single migration * fix(medusa-plugin-segment): adds item claimed event to segment
18 lines
454 B
JavaScript
18 lines
454 B
JavaScript
const Scrypt = require("scrypt-kdf");
|
|
const { User } = require("@medusajs/medusa");
|
|
|
|
module.exports = async (connection, data = {}) => {
|
|
const manager = connection.manager;
|
|
|
|
const buf = await Scrypt.kdf("secret_password", { logN: 1, r: 1, p: 1 });
|
|
const password_hash = buf.toString("base64");
|
|
|
|
await manager.insert(User, {
|
|
id: "admin_user",
|
|
email: "admin@medusa.js",
|
|
api_token: "test_token",
|
|
password_hash,
|
|
...data,
|
|
});
|
|
};
|