nextcloud/apps/comments/src/utils/davUtils.ts
Edward Ly 3aa22804e1 refactor(comments): migrate to TypeScript
Signed-off-by: Edward Ly <contact@edward.ly>
2026-04-01 14:54:43 +02:00

15 lines
288 B
TypeScript

/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { generateRemoteUrl } from '@nextcloud/router'
/**
*
*/
function getRootPath() {
return generateRemoteUrl('dav/comments')
}
export { getRootPath }