Blame view
sources/apps/user_oauth/ajax/seturl.php
403 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php /** * Copyright (c) 2011, Frank Karlitschek <karlitschek@kde.org> * Copyright (c) 2012, Florian Hülsmann <fh@cbix.de> * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ OCP\User::checkAdminUser(); OCP\JSON::callCheck(); OCP\Config::setSystemValue( 'introspectionEndpoint', $_POST['introspectionEndpoint'] ); echo 'true'; |