18 lines
418 B
JavaScript
18 lines
418 B
JavaScript
const checkers = [
|
|
{
|
|
type: 'logical',
|
|
entity: 'order',
|
|
action: 'create',
|
|
checker: (operation, context) => {
|
|
const { data } = operation;
|
|
if (!data.creatorId) {
|
|
data.creatorId = context.getCurrentUserId();
|
|
}
|
|
data.paid = 0;
|
|
data.refunded = 0;
|
|
return 1;
|
|
}
|
|
}
|
|
];
|
|
export default checkers;
|