Merge pull request #20269 from owncloud/capabilities-webdav-ng-sync
Add a new core capability which tells the clients which url to use
This commit is contained in:
commit
5a25f1c2a0
1 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,8 @@ class CoreCapabilities implements ICapability {
|
|||
public function getCapabilities() {
|
||||
return [
|
||||
'core' => [
|
||||
'pollinterval' => $this->config->getSystemValue('pollinterval', 60)
|
||||
'pollinterval' => $this->config->getSystemValue('pollinterval', 60),
|
||||
'webdav-root' => $this->config->getSystemValue('webdav-root', 'remote.php/webdav'),
|
||||
]
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue