Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-08-06 18:59:25 +0300
committerRobin Appelman <robin@icewind.nl>2018-08-06 18:59:25 +0300
commit7edb64e78beff91f9d1f8c6c1bf694b5ba21030a (patch)
tree18838c9db0ffd7ab31b78575db65ce01bb72f1c7
parentb8ec476886210a797a8601e9a719708bb8733242 (diff)
appchecker compliance for app.php and info.xml
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r--appinfo/app.php4
-rw-r--r--appinfo/info.xml18
2 files changed, 11 insertions, 11 deletions
diff --git a/appinfo/app.php b/appinfo/app.php
index 54a5711d..9e741911 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -9,10 +9,10 @@ $eventDispatcher = \OC::$server->getEventDispatcher();
$eventDispatcher->addListener(
'OCA\Files::loadAdditionalScripts',
function () {
- \OC_Util::addScript('groupfolders', 'files');
+ \OCP\Util::addScript('groupfolders', 'files');
}
);
$eventDispatcher->addListener('OCA\Files_Sharing::loadAdditionalScripts', function () {
- \OC_Util::addScript('groupfolders', 'files');
+ \OCP\Util::addScript('groupfolders', 'files');
});
diff --git a/appinfo/info.xml b/appinfo/info.xml
index c4658bcf..338d0709 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -10,13 +10,15 @@ Folders can be configured from *Group folders* in the admin settings.
After a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.
Note: encrypting the contents of group folders is currently not supported.]]></description>
- <licence>AGPL</licence>
- <author>Robin Appelman</author>
<version>1.2.2</version>
+ <licence>agpl</licence>
+ <author>Robin Appelman</author>
+ <namespace>GroupFolders</namespace>
<types>
<filesystem/>
</types>
- <namespace>GroupFolders</namespace>
+
+ <category>files</category>
<website>https://github.com/nextcloud/groupfolders</website>
<bugs>https://github.com/nextcloud/groupfolders/issues</bugs>
@@ -26,14 +28,12 @@ Note: encrypting the contents of group folders is currently not supported.]]></d
<screenshot>https://raw.githubusercontent.com/nextcloud/groupfolders/master/screenshots/edit.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/groupfolders/master/screenshots/permissions.png</screenshot>
+ <dependencies>
+ <nextcloud min-version="12" max-version="14"/>
+ </dependencies>
+
<settings>
<admin>OCA\GroupFolders\Settings\Admin</admin>
<admin-section>OCA\GroupFolders\Settings\Section</admin-section>
</settings>
-
- <category>files</category>
-
- <dependencies>
- <nextcloud min-version="12" max-version="14"/>
- </dependencies>
</info>