GraphQL: Remove files for user webservices #2644

pull/2818/head
Angel Fernando Quiroz Campos 6 years ago
parent 707087e514
commit c707bf8b48
  1. 1
      main/webservices/soap.php
  2. 16
      main/webservices/soap_user.php
  3. 14
      main/webservices/webservice_user.php

@ -122,7 +122,6 @@ $s->register(
['return' => 'xsd:string']
);
require_once __DIR__.'/soap_user.php';
require_once __DIR__.'/soap_course.php';
require_once __DIR__.'/soap_session.php';
require_once __DIR__.'/soap_report.php';

@ -1,16 +0,0 @@
<?php
/* For licensing terms, see /license.txt */
/**
* Configures the WSUser SOAP service.
*
* @package chamilo.webservices
*/
require_once __DIR__.'/webservice_user.php';
require_once __DIR__.'/soap.php';
/**
* Configures the WSUser SOAP service.
*
* @package chamilo.webservices
*/
$s = WSSoapServer::singleton();

@ -1,14 +0,0 @@
<?php
/* For licensing terms, see /license.txt */
/**
* @package chamilo.webservices
*/
require_once __DIR__.'/../inc/global.inc.php';
require_once __DIR__.'/webservice.php';
/**
* Web services available for the User module. This class extends the WS class.
*/
class WSUser extends WS
{
}
Loading…
Cancel
Save