Tofu/scripts/import-recipes/webdav/PROPFIND_BODY.js
2026-09-18 01:41:02 +02:00

11 lines
378 B
JavaScript

// Deliberately a copy of the app's own PROPFIND body: this script is a
// throwaway tool with its own package, and the app must never depend on it.
export const PROPFIND_BODY = `<?xml version="1.0" encoding="utf-8"?>
<d:propfind xmlns:d="DAV:">
<d:prop>
<d:displayname/>
<d:getcontentlength/>
<d:getlastmodified/>
<d:resourcetype/>
</d:prop>
</d:propfind>`