mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
MDL-60830 core_enrol: Added email when searching users in course enrol
This commit is contained in:
parent
4275ea4a43
commit
46ea440b87
@ -453,7 +453,11 @@ class core_enrol_external extends external_api {
|
||||
$params['perpage']);
|
||||
|
||||
$results = array();
|
||||
$requiredfields = ['id', 'fullname', 'profileimageurl', 'profileimageurlsmall'];
|
||||
// Add also extra user fields.
|
||||
$requiredfields = array_merge(
|
||||
['id', 'fullname', 'profileimageurl', 'profileimageurlsmall'],
|
||||
get_extra_user_fields($context)
|
||||
);
|
||||
foreach ($users['users'] as $id => $user) {
|
||||
// Note: We pass the course here to validate that the current user can at least view user details in this course.
|
||||
// The user we are looking at is not in this course yet though - but we only fetch the minimal set of
|
||||
|
Loading…
x
Reference in New Issue
Block a user