11 lines
378 B
JavaScript
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>`
|