Merge branch 'MDL-57393-master' of git://github.com/jleyva/moodle

This commit is contained in:
Andrew Nicols 2017-04-10 13:20:13 +08:00
commit 3afd529013
2 changed files with 5 additions and 3 deletions

View File

@ -56,7 +56,8 @@ $functions = array(
'description' => 'Create calendar events',
'classpath' => 'calendar/externallib.php',
'type' => 'write',
'capabilities' => 'moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries'
'capabilities' => 'moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries',
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
),
'core_calendar_delete_calendar_events' => array(
'classname' => 'core_calendar_external',
@ -64,7 +65,8 @@ $functions = array(
'description' => 'Delete calendar events',
'classpath' => 'calendar/externallib.php',
'type' => 'write',
'capabilities' => 'moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries'
'capabilities' => 'moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries',
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
),
'core_calendar_get_calendar_events' => array(
'classname' => 'core_calendar_external',

View File

@ -29,7 +29,7 @@
defined('MOODLE_INTERNAL') || die();
$version = 2017040700.04; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2017041000.00; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.