mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
Merge branch 'MDL-63740-master' of git://github.com/jleyva/moodle
This commit is contained in:
commit
d33a22c037
2 changed files with 14 additions and 10 deletions
|
@ -33,6 +33,7 @@ $functions = array(
|
||||||
'description' => 'Get users starred courses.',
|
'description' => 'Get users starred courses.',
|
||||||
'type' => 'read',
|
'type' => 'read',
|
||||||
'ajax' => true,
|
'ajax' => true,
|
||||||
|
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -542,7 +542,8 @@ $functions = array(
|
||||||
'classpath' => 'course/externallib.php',
|
'classpath' => 'course/externallib.php',
|
||||||
'description' => 'List of enrolled courses for the given timeline classification (past, inprogress, or future).',
|
'description' => 'List of enrolled courses for the given timeline classification (past, inprogress, or future).',
|
||||||
'type' => 'read',
|
'type' => 'read',
|
||||||
'ajax' => true
|
'ajax' => true,
|
||||||
|
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
||||||
),
|
),
|
||||||
'core_course_get_recent_courses' => array(
|
'core_course_get_recent_courses' => array(
|
||||||
'classname' => 'core_course_external',
|
'classname' => 'core_course_external',
|
||||||
|
@ -550,7 +551,17 @@ $functions = array(
|
||||||
'classpath' => 'course/externallib.php',
|
'classpath' => 'course/externallib.php',
|
||||||
'description' => 'List of courses a user has accessed most recently.',
|
'description' => 'List of courses a user has accessed most recently.',
|
||||||
'type' => 'read',
|
'type' => 'read',
|
||||||
'ajax' => true
|
'ajax' => true,
|
||||||
|
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
||||||
|
),
|
||||||
|
'core_course_set_favourite_courses' => array(
|
||||||
|
'classname' => 'core_course_external',
|
||||||
|
'methodname' => 'set_favourite_courses',
|
||||||
|
'classpath' => 'course/externallib.php',
|
||||||
|
'description' => 'Add a list of courses to the list of favourite courses.',
|
||||||
|
'type' => 'read',
|
||||||
|
'ajax' => true,
|
||||||
|
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
||||||
),
|
),
|
||||||
'core_enrol_get_course_enrolment_methods' => array(
|
'core_enrol_get_course_enrolment_methods' => array(
|
||||||
'classname' => 'core_enrol_external',
|
'classname' => 'core_enrol_external',
|
||||||
|
@ -2319,14 +2330,6 @@ $functions = array(
|
||||||
'type' => 'read',
|
'type' => 'read',
|
||||||
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
||||||
),
|
),
|
||||||
'core_course_set_favourite_courses' => array(
|
|
||||||
'classname' => 'core_course_external',
|
|
||||||
'methodname' => 'set_favourite_courses',
|
|
||||||
'classpath' => 'course/externallib.php',
|
|
||||||
'description' => 'Add a list of courses to the list of favourite courses.',
|
|
||||||
'type' => 'read',
|
|
||||||
'ajax' => true
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$services = array(
|
$services = array(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue