Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2017-04-18 17:25:33 +02:00
Родитель 7f0a9f0193
Коммит 475ad40e44
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E166FD8976B3BAC8
3 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -15,9 +15,9 @@ In order to find out if notifications support push on the server you can run a r
"capabilities": {
...
"notifications": {
"ocs-endpoints": [
"push": [
...
"push"
"devices"
]
}
}

Просмотреть файл

@ -45,6 +45,9 @@ class Capabilities implements ICapability {
'icons',
'rich-strings',
],
'push' => [
'devices',
],
],
];
}

Просмотреть файл

@ -38,6 +38,9 @@ class CapabilitiesTest extends TestCase {
'icons',
'rich-strings',
],
'push' => [
'devices',
],
],
], $capabilities->getCapabilities());
}