summaryrefslogtreecommitdiffstats
path: root/apps/files_versions/ajax/togglesettings.php
blob: 49e314f86aa17d348447422508a215b7f53c97e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

OC_JSON::checkAppEnabled('files_versions');
OC_JSON::checkAdminUser();
if (OCP\Config::getSystemValue('versions', 'true')=='true') {
	OCP\Config::setSystemValue('versions', 'false');
} else {
	OCP\Config::setSystemValue('versions', 'true');
}

?>