mirror of
https://github.com/moodle/moodle.git
synced 2025-07-27 01:10:51 +02:00
16 lines
341 B
PHP
16 lines
341 B
PHP
<?php
|
|
|
|
$capabilities = array(
|
|
|
|
'repository/googledocs:view' => array(
|
|
'captype' => 'read',
|
|
'contextlevel' => CONTEXT_SYSTEM,
|
|
'legacy' => array(
|
|
'student' => CAP_ALLOW,
|
|
'teacher' => CAP_ALLOW,
|
|
'editingteacher' => CAP_ALLOW,
|
|
'manager' => CAP_ALLOW
|
|
)
|
|
)
|
|
);
|