mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
6 lines
270 B
TypeScript
6 lines
270 B
TypeScript
export default function readonlyProperties(requestMethod:string) {
|
|
const output = ['created_time', 'updated_time', 'encryption_blob_encrypted', 'encryption_applied', 'encryption_cipher_text'];
|
|
if (requestMethod !== 'POST') output.splice(0, 0, 'id');
|
|
return output;
|
|
}
|