mirror of
https://github.com/nextcloud/server.git
synced 2026-05-19 16:39:59 -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');
|
|
}
|
|
|
|
?>
|