mirror of
https://github.com/moodle/moodle.git
synced 2025-03-12 11:49:49 +01:00
16 lines
347 B
PHP
16 lines
347 B
PHP
<?php
|
|
|
|
$capabilities = array(
|
|
|
|
'repository/webdav:view' => array(
|
|
'captype' => 'read',
|
|
'contextlevel' => CONTEXT_MODULE,
|
|
'archetypes' => array(
|
|
'coursecreator' => CAP_ALLOW,
|
|
'teacher' => CAP_ALLOW,
|
|
'editingteacher' => CAP_ALLOW,
|
|
'manager' => CAP_ALLOW
|
|
)
|
|
)
|
|
);
|