mirror of
https://github.com/moodle/moodle.git
synced 2025-08-03 16:13:28 +02:00
15 lines
334 B
PHP
15 lines
334 B
PHP
<?php
|
|
|
|
$capabilities = array(
|
|
|
|
'repository/local:view' => array(
|
|
'captype' => 'read',
|
|
'contextlevel' => CONTEXT_SYSTEM,
|
|
'legacy' => array(
|
|
'student' => CAP_ALLOW,
|
|
'teacher' => CAP_ALLOW,
|
|
'editingteacher' => CAP_ALLOW,
|
|
'admin' => CAP_ALLOW
|
|
)
|
|
)
|
|
);
|