mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 10:00:33 -04:00
15 lines
288 B
JavaScript
15 lines
288 B
JavaScript
/**
|
|
* 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 }
|