feat: Remove positionCompany column from usuario table and references in frontend and backend
parent
4a6fb3f61e
commit
b85aa4d5ba
|
@ -43,8 +43,7 @@ export const createUser = async (
|
||||||
const user = await CreateUserService({
|
const user = await CreateUserService({
|
||||||
email: user_tax_id || user_email,
|
email: user_tax_id || user_email,
|
||||||
password: "12345",
|
password: "12345",
|
||||||
name: user_first_name,
|
name: user_first_name,
|
||||||
positionCompany: user_title,
|
|
||||||
profile: "user",
|
profile: "user",
|
||||||
ignoreThrow: true
|
ignoreThrow: true
|
||||||
});
|
});
|
||||||
|
@ -204,8 +203,7 @@ export const updateUser = async (
|
||||||
|
|
||||||
const userData = {
|
const userData = {
|
||||||
email: user_tax_id || user_email,
|
email: user_tax_id || user_email,
|
||||||
name: user_first_name,
|
name: user_first_name,
|
||||||
positionCompany: user_title
|
|
||||||
};
|
};
|
||||||
|
|
||||||
let user: any = await UpdateUserService({
|
let user: any = await UpdateUserService({
|
||||||
|
|
Loading…
Reference in New Issue