mirror of
https://github.com/nextcloud/server.git
synced 2026-02-12 07:14:44 -05:00
9 lines
No EOL
265 B
PHP
9 lines
No EOL
265 B
PHP
<?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();
|
|
|
|
?>
|