You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
566 B
26 lines
566 B
'use strict';
|
|
|
|
async function importIn (ctx) {
|
|
try {
|
|
const models = ctx.fs.dc.models;
|
|
const { level } = ctx.query;
|
|
const data = ctx.request.body;
|
|
|
|
for (let d of data) {
|
|
d.level = level;
|
|
await models.User.create(d);
|
|
}
|
|
|
|
ctx.status = 204
|
|
} catch (error) {
|
|
ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`);
|
|
ctx.status = 400;
|
|
ctx.body = {
|
|
message: typeof error == 'string' ? error : undefined
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
importIn
|
|
};
|