summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/settings.php
blob: 7b63a26515a312749b4cd8c560a36e93b18bf7ea (plain)
1
2
3
4
5
6
7
8
9
<?php

OCP\User::checkAdminUser();
OCP\Util::addscript('files_sharing', 'settings');
$tmpl = new OCP\Template('files_sharing', 'settings');
$tmpl->assign('allowResharing', OCP\Config::getAppValue('files_sharing', 'resharing', 'yes'));
return $tmpl->fetchPage();

?>