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

github.com/nextcloud/files_accesscontrol.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2018-09-04 13:52:51 +0300
committerGitHub <noreply@github.com>2018-09-04 13:52:51 +0300
commit7cdafdb664a1de993eb60669ae93651214feb3f0 (patch)
tree01096877b2774936ce552863968a9d05de3db09a /appinfo
parent220cc9343930b78274931b79d43c5f2045c6f012 (diff)
parent0a20a793ec5f82c98bcdc1bfbd77fcb10039892e (diff)
Merge pull request #109 from nextcloud/fix/noid/overwrite_get_permissions
We have no permissions if the rule matches
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/info.xml28
1 files changed, 15 insertions, 13 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index a9663bd..bcf89c5 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -1,5 +1,6 @@
<?xml version="1.0"?>
-<info>
+<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>files_accesscontrol</id>
<name>File access control</name>
<summary>Control access to files based on conditions</summary>
@@ -11,32 +12,33 @@ The administrator can create and manage a set of rule groups. Each of the rule g
An example would be to deny access to MS Excel/XLSX files owned by the "Human Resources" group accessed from an IP not on the internal company network or to block uploads of files bigger than 512 mb by students in the "1st year" group.
Learn more about File Access Control on [https://nextcloud.com/workflow](https://nextcloud.com/workflow)</description>
- <licence>AGPL</licence>
- <author>Morris Jobke</author>
+
<version>1.4.0</version>
+ <licence>agpl</licence>
+ <author>Morris Jobke</author>
<namespace>FilesAccessControl</namespace>
+ <types>
+ <filesystem/>
+ </types>
+
+ <documentation>
+ <admin>https://docs.nextcloud.com/server/14/go.php?to=admin-files-access-control</admin>
+ </documentation>
+
+
<category>files</category>
<website>https://github.com/nextcloud/files_accesscontrol</website>
<bugs>https://github.com/nextcloud/files_accesscontrol/issues</bugs>
<repository type="git">https://github.com/nextcloud/files_accesscontrol.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/files_accesscontrol/master/screenshots/1.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/files_accesscontrol/master/screenshots/2.png</screenshot>
-
- <types>
- <filesystem/>
- </types>
-
<dependencies>
<nextcloud min-version="14" max-version="14" />
</dependencies>
- <documentation>
- <admin>https://docs.nextcloud.com/server/14/go.php?to=admin-files-access-control</admin>
- </documentation>
-
<settings>
- <admin-section>OCA\FilesAccessControl\Settings\Section</admin-section>
<admin>OCA\FilesAccessControl\Settings\Admin</admin>
+ <admin-section>OCA\FilesAccessControl\Settings\Section</admin-section>
</settings>
</info>