N-FIN-5: changed success message depending on condition
This commit is contained in:
parent
e3874add65
commit
4e761d81de
1 changed files with 12 additions and 6 deletions
|
@ -35,6 +35,12 @@ export default async function entityCreateUpdate({
|
|||
},
|
||||
},
|
||||
);
|
||||
|
||||
// return success
|
||||
return {
|
||||
type: 'success',
|
||||
message: `${type} '${name}' updated`,
|
||||
};
|
||||
} else {
|
||||
await prismaClient.entity.create({
|
||||
data: {
|
||||
|
@ -43,6 +49,12 @@ export default async function entityCreateUpdate({
|
|||
type: type,
|
||||
},
|
||||
});
|
||||
|
||||
// return success
|
||||
return {
|
||||
type: 'success',
|
||||
message: `${type} '${name}' created`,
|
||||
};
|
||||
}
|
||||
} catch (e) {
|
||||
return {
|
||||
|
@ -50,10 +62,4 @@ export default async function entityCreateUpdate({
|
|||
message: 'Failed creating/updating entity',
|
||||
};
|
||||
}
|
||||
|
||||
// return success
|
||||
return {
|
||||
type: 'success',
|
||||
message: `${type} '${name}' created`,
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue