mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
13 lines
405 B
PHP
13 lines
405 B
PHP
<?php
|
|
|
|
$capabilities = array(
|
|
|
|
'webservice/soap:use' => array(
|
|
'riskbitmask' => RISK_CONFIG | RISK_DATALOSS | RISK_SPAM | RISK_PERSONAL | RISK_XSS,
|
|
'captype' => 'read', // in fact this may be considered read and write at the same time
|
|
'contextlevel' => CONTEXT_COURSE, // the context level should be probably CONTEXT_MODULE
|
|
'archetypes' => array(
|
|
),
|
|
),
|
|
|
|
);
|