nextcloud/apps/files_sharing/ajax/togglesharewitheveryone.php

11 lines
318 B
PHP
Raw Normal View History

<?php
2012-07-20 22:12:36 +04:00
OCP\JSON::callCheck();
OCP\JSON::checkAppEnabled('files_sharing');
OCP\JSON::checkAdminUser();
if ($_POST['allowSharingWithEveryone'] == true) {
OCP\Config::setAppValue('files_sharing', 'allowSharingWithEveryone', 'yes');
} else {
OCP\Config::setAppValue('files_sharing', 'allowSharingWithEveryone', 'no');
}