// User insights.
'insights' => array (
- 'capability' => 'moodle/analytics:listinsights'
+ 'defaults' => [
+ 'popup' => MESSAGE_PERMITTED + MESSAGE_DEFAULT_LOGGEDIN + MESSAGE_DEFAULT_LOGGEDOFF,
+ 'email' => MESSAGE_PERMITTED + MESSAGE_DEFAULT_LOGGEDOFF,
+ ]
),
// Message contact requests.
upgrade_main_savepoint(true, 2019011801.03);
}
+ if ($oldversion < 2019021500.01) {
+ $insights = $DB->get_record('message_providers', ['component' => 'moodle', 'name' => 'insights']);
+ $insights->capability = null;
+ $DB->update_record('message_providers', $insights);
+ upgrade_main_savepoint(true, 2019021500.01);
+ }
+
return true;
}
defined('MOODLE_INTERNAL') || die();
-$version = 2019021500.00; // YYYYMMDD = weekly release date of this DEV branch.
+$version = 2019021500.01; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.