@@ -16,7 +16,6 @@ class ExpertService extends CrudService {
async update({ id }, data) {
const expert = await this.model.findById(id);
- console.log(data);
const { name, gender, id_number, phone, address, birthday, email, img_url, level, levelname, position, school, education, degree, major, profession, resume, project, academic, status } = data;
const user = (await this.umodel.find({ userid: id }))[0];