mirror of
https://github.com/nextcloud/server.git
synced 2026-03-27 12:54:24 -04:00
11 lines
256 B
PHP
11 lines
256 B
PHP
<?php
|
|
|
|
OCP\JSON::checkAppEnabled('files_versions');
|
|
OCP\JSON::checkAdminUser();
|
|
if (OCP\Config::getSystemValue('versions', 'true')=='true') {
|
|
OCP\Config::setSystemValue('versions', 'false');
|
|
} else {
|
|
OCP\Config::setSystemValue('versions', 'true');
|
|
}
|
|
|
|
?>
|