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