Drop hooks service.app-delay-start-* in favour of the existing json.before-appdelaystart and json.after-appdelaystart

This commit is contained in:
the-djmaze 2024-03-26 15:04:23 +01:00
parent 57fbdf8795
commit 07710f685f
2 changed files with 0 additions and 10 deletions

View file

@ -411,12 +411,6 @@ and called in JavaScript using rl.pluginRemoteRequest().
string $sName
mixed &$mResult
### service.app-delay-start-begin
no params
### service.app-delay-start-end
no params
# JavaScript Events
## mailbox

View file

@ -79,8 +79,6 @@ trait User
public function DoAppDelayStart() : array
{
$this->Plugins()->RunHook('service.app-delay-start-begin');
Utils::UpdateConnectionToken();
$bMainCache = false;
@ -130,8 +128,6 @@ trait User
$this->logWrite('Files GC: End');
}
$this->Plugins()->RunHook('service.app-delay-start-end');
return $this->TrueResponse();
}