mirror of
https://github.com/nextcloud/server.git
synced 2026-06-16 20:19:48 -04:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { generateRemoteUrl } from '@nextcloud/router'
|
|
|
|
const getRootPath = function() {
|
|
return generateRemoteUrl('dav/comments')
|
|
}
|
|
|
|
export { getRootPath }
|