Update event registration classes

This commit is contained in:
Valentin Popov 2017-11-23 22:00:36 +04:00
parent 2ae949bbc3
commit bec8dcdc08
3 changed files with 3 additions and 3 deletions

View File

@ -60,6 +60,6 @@ class backup_performed extends \core\event\base {
* Get URL related to the action.
*/
public function get_url() {
return new \moodle_url("/local/webhooks/managerservice.php");
return new \moodle_url("/local/webhooks/index.php");
}
}

View File

@ -60,6 +60,6 @@ class backup_restored extends \core\event\base {
* Get URL related to the action.
*/
public function get_url() {
return new \moodle_url("/local/webhooks/managerservice.php");
return new \moodle_url("/local/webhooks/index.php");
}
}

View File

@ -60,6 +60,6 @@ class service_deleted extends \core\event\base {
* Get URL related to the action.
*/
public function get_url() {
return new \moodle_url("/local/webhooks/editservice.php", array("serviceid" => $this->objectid));
return new \moodle_url("/local/webhooks/index.php");
}
}