nextcloud/settings/ajax/removeRootCertificate.php

8 lines
197 B
PHP
Raw Normal View History

<?php
2012-08-10 02:44:35 +04:00
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
$name = (string)$_POST['cert'];
$certificateManager = \OC::$server->getCertificateManager();
2014-08-14 17:47:23 +04:00
$certificateManager->removeCertificate($name);