From 578586703f152033965fb82458dda4bb8de590b5 Mon Sep 17 00:00:00 2001 From: Juan Leyva Date: Thu, 15 Aug 2019 11:55:57 +0100 Subject: [PATCH] MDL-66374 group: Add existing WS to the mobile service --- lib/db/services.php | 4 +++- version.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/db/services.php b/lib/db/services.php index f6cd4ecee95..d1dec991ca1 100644 --- a/lib/db/services.php +++ b/lib/db/services.php @@ -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', diff --git a/version.php b/version.php index 0b97c8cafb2..9f3f6df9f2a 100644 --- a/version.php +++ b/version.php @@ -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.