mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 00:16:46 +02:00
MDL-20712 using just $capablities for capability definition array, all other files in db/* do not use component names in definition array; old capability array names are of course supported
This commit is contained in:
parent
e3acc8af7a
commit
0ac940b3bf
64 changed files with 92 additions and 124 deletions
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
$webservice_amf_capabilities = array(
|
||||
$capabilities = array(
|
||||
|
||||
'webservice/amf:use' => array(
|
||||
'captype' => 'read', // in fact this may be considered read and write at the same time
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
$webservice_rest_capabilities = array(
|
||||
$capabilities = array(
|
||||
|
||||
'webservice/rest:use' => array(
|
||||
'captype' => 'read', // in fact this may be considered read and write at the same time
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
$webservice_soap_capabilities = array(
|
||||
$capabilities = array(
|
||||
|
||||
'webservice/soap:use' => array(
|
||||
'captype' => 'read', // in fact this may be considered read and write at the same time
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
$webservice_xmlrpc_capabilities = array(
|
||||
$capabilities = array(
|
||||
|
||||
'webservice/xmlrpc:use' => array(
|
||||
'captype' => 'read', // in fact this may be considered read and write at the same time
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue