mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
17 lines
374 B
PHP
17 lines
374 B
PHP
<?php
|
|
|
|
$capabilities = array(
|
|
|
|
'repository/googledocs:view' => array(
|
|
'captype' => 'read',
|
|
'contextlevel' => CONTEXT_SYSTEM,
|
|
'legacy' => array(
|
|
'user' => CAP_ALLOW,
|
|
'student' => CAP_ALLOW,
|
|
'teacher' => CAP_ALLOW,
|
|
'editingteacher' => CAP_ALLOW,
|
|
'manager' => CAP_ALLOW
|
|
)
|
|
)
|
|
);
|