feat: Remove positionCompany column from usuario table and references in frontend and backend

feat-scaling-ticket-remote-creation
adriano 2024-05-03 15:16:16 -03:00
parent 4a6fb3f61e
commit b85aa4d5ba
1 changed files with 2 additions and 4 deletions

View File

@ -43,8 +43,7 @@ export const createUser = async (
const user = await CreateUserService({
email: user_tax_id || user_email,
password: "12345",
name: user_first_name,
positionCompany: user_title,
name: user_first_name,
profile: "user",
ignoreThrow: true
});
@ -204,8 +203,7 @@ export const updateUser = async (
const userData = {
email: user_tax_id || user_email,
name: user_first_name,
positionCompany: user_title
name: user_first_name,
};
let user: any = await UpdateUserService({