Resolve Nextcloud save issue and added mockup code for files browser

https://github.com/the-djmaze/snappymail/issues/96#issuecomment-1282589485
This commit is contained in:
the-djmaze 2022-10-18 19:21:27 +02:00
parent 640f75da8d
commit a41afb17ad
4 changed files with 61 additions and 3 deletions

View file

@ -4,8 +4,8 @@ class NextcloudPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Nextcloud',
VERSION = '2.3',
RELEASE = '2022-10-18',
VERSION = '2.4',
RELEASE = '2022-10-19',
CATEGORY = 'Integrations',
DESCRIPTION = 'Integrate with Nextcloud v20+',
REQUIRED = '2.19.0';
@ -21,6 +21,8 @@ class NextcloudPlugin extends \RainLoop\Plugins\AbstractPlugin
$this->addJs('js/message.js');
$this->addHook('json.attachments', 'DoAttachmentsActions');
$this->addJsonHook('NextcloudSaveMsg', 'NextcloudSaveMsg');
$this->addTemplate('templates/PopupsNextcloudFiles.html');
}
}