1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/lib/services/rest/utils/defaultSaveOptions.ts

6 lines
208 B
TypeScript
Raw Normal View History

export default function(requestMethod: string, modelId: string = null) {
const options: any = { userSideValidation: true };
2020-11-05 18:58:23 +02:00
if (requestMethod === 'POST' && modelId) options.isNew = true;
return options;
}