MDL-66374 group: Add existing WS to the mobile service

This commit is contained in:
Juan Leyva 2019-08-15 11:55:57 +01:00
parent 8e9e9a5f7e
commit 578586703f
2 changed files with 4 additions and 2 deletions

View File

@ -862,6 +862,7 @@ $functions = array(
'classpath' => 'group/externallib.php',
'description' => 'Returns all groupings in specified course.',
'type' => 'read',
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
),
'core_group_get_course_groups' => array(
'classname' => 'core_group_external',
@ -870,7 +871,8 @@ $functions = array(
'description' => 'Returns all groups in specified course.',
'type' => 'read',
'ajax' => true,
'capabilities' => 'moodle/course:managegroups'
'capabilities' => 'moodle/course:managegroups',
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
),
'core_group_get_course_user_groups' => array(
'classname' => 'core_group_external',

View File

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