Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
<owncloud min-version="9.2" max-version="9.2" />
</dependencies>

<documentation>
<admin>admin-files-access-control</admin>
</documentation>

<settings>
<admin-section>OCA\FilesAccessControl\Settings\Section</admin-section>
<admin>OCA\FilesAccessControl\Settings\Admin</admin>
Expand Down
1 change: 1 addition & 0 deletions lib/Settings/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public function getForm() {
Util::addScript($appName, 'admin');
$parameters = [
'appid' => $appName,
'docs' => 'admin-files-access-control',
'heading' => $this->l10n->t('File access control'),
'description' => $this->l10n->t('Each rule group consists of one or more rules. A request matches a group if all rules evaluate to true. If a request matches at least one of the defined groups, the request is blocked and the file content can not be read or written.'),
];
Expand Down