fix syntax error
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
philipp lang 2023-12-30 22:39:26 +01:00
parent 3469aeef93
commit 221815fb7e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ var echo = new Echo({
echo.channel('jobs')
.listen('\\App\\Lib\\Events\\JobStarted', (e) => handleJobEvent(e, 'success'))
.listen('\\App\\Lib\\Events\\JobFinished', (e) => handleJobEvent(e, 'success'))
.listen('\\App\\Lib\\Events\\JobFailed', (e) => handleJobEvent(e, 'error'));
.listen('\\App\\Lib\\Events\\JobFailed', (e) => handleJobEvent(e, 'error'))
.listen('\\App\\Lib\\Events\\Succeeded', (e) => handleJobEvent(e, 'success'));
export default echo;