mirror of
https://github.com/moodle/moodle.git
synced 2025-04-13 20:42:22 +02:00
MDL-79619 core_message: Set instant messaging web service read-only
Set the web service function core_message_send_instant_messages to use read-only sessions. This function can take a few seconds to process if it is sending messages to lots of users, and setting it to use read-only sessions will prevent it from blocking other requests.
This commit is contained in:
parent
859df15e73
commit
27edba5d10
@ -1477,6 +1477,7 @@ $functions = array(
|
||||
'capabilities' => 'moodle/site:sendmessage',
|
||||
'ajax' => true,
|
||||
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
|
||||
'readonlysession' => true,
|
||||
),
|
||||
'core_message_send_messages_to_conversation' => array(
|
||||
'classname' => 'core_message_external',
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$version = 2023102700.00; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
$version = 2023102700.01; // YYYYMMDD = weekly release date of this DEV branch.
|
||||
// RR = release increments - 00 in DEV branches.
|
||||
// .XX = incremental changes.
|
||||
$release = '4.4dev (Build: 20231027)'; // Human-friendly version name
|
||||
|
Loading…
x
Reference in New Issue
Block a user