Blame view

sources/apps/user_oauth/settings.php 325 Bytes
42e4f8d60   Kload   add all apps
1
2
3
4
5
6
7
8
9
10
11
  <?php
  
  OCP\User::checkAdminUser();
  
  OCP\Util::addScript( "user_oauth", "admin" );
  
  $tmpl = new OCP\Template( 'user_oauth', 'settings');
  
  $tmpl->assign('introspectionEndpoint', OCP\Config::getSystemValue( "introspectionEndpoint", 'https://frko.surfnetlabs.nl/workshop/php-oauth/introspect.php' ));
  
  return $tmpl->fetchPage();