mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
13 lines
285 B
JavaScript
13 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 }
|