mirror of
https://github.com/nextcloud/server.git
synced 2026-03-22 02:21:12 -04:00
11 lines
254 B
PHP
11 lines
254 B
PHP
<?php
|
|
|
|
OCP\JSON::checkAppEnabled('files_sharing');
|
|
OCP\JSON::checkAdminUser();
|
|
if ($_POST['resharing'] == true) {
|
|
OCP\Config::setAppValue('files_sharing', 'resharing', 'yes');
|
|
} else {
|
|
OCP\Config::setAppValue('files_sharing', 'resharing', 'no');
|
|
}
|
|
|
|
?>
|