Skip to content

Commit

Permalink
Merge pull request #632 from ncstate-delta/fix/remove-local-mobile
Browse files Browse the repository at this point in the history
services: remove deprecated local_mobile
  • Loading branch information
jrchamp authored Jan 9, 2025
2 parents eafd124 + f749b49 commit e1bd6e6
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions db/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
defined('MOODLE_INTERNAL') || die;

$functions = [

'mod_zoom_get_state' => [
'classname' => 'mod_zoom\external',
'methodname' => 'get_state',
Expand All @@ -37,17 +36,15 @@
. 'status, and the start time, duration, and other meeting options.',
'type' => 'read',
'capabilities' => 'mod/zoom:view',
'services' => [MOODLE_OFFICIAL_MOBILE_SERVICE, 'local_mobile'],
'services' => [MOODLE_OFFICIAL_MOBILE_SERVICE],
],

'mod_zoom_grade_item_update' => [
'classname' => 'mod_zoom\external',
'methodname' => 'grade_item_update',
'classpath' => 'mod/zoom/classes/external.php',
'description' => 'Creates or updates grade item for the given zoom instance and returns join url.',
'type' => 'write',
'capabilities' => 'mod/zoom:view',
'services' => [MOODLE_OFFICIAL_MOBILE_SERVICE, 'local_mobile'],
'services' => [MOODLE_OFFICIAL_MOBILE_SERVICE],
],

];

0 comments on commit e1bd6e6

Please sign in to comment.