MDL-30452 Repositories: Changed default capability on repos - Thanks Michael
[moodle.git] / repository / filesystem / db / access.php
1 <?php
3 $capabilities = array(
5     'repository/filesystem:view' => array(
6         'captype' => 'read',
7         'contextlevel' => CONTEXT_MODULE,
8         'archetypes' => array(
9             'coursecreator' => CAP_ALLOW,
10             'teacher' => CAP_ALLOW,
11             'editingteacher' => CAP_ALLOW,
12             'manager' => CAP_ALLOW
13         )
14     )
15 );