mirror of
https://github.com/flarum/core.git
synced 2025-07-19 07:41:22 +02:00
Applied fixes from StyleCI
This commit is contained in:
@@ -16,4 +16,4 @@ return function (Dispatcher $events) {
|
||||
$events->subscribe(Listener\AddClientAssets::class);
|
||||
$events->subscribe(Listener\AddPusherApi::class);
|
||||
$events->subscribe(Listener\PushNewPosts::class);
|
||||
};
|
||||
};
|
||||
|
@@ -38,7 +38,7 @@ class AuthController implements ControllerInterface
|
||||
*/
|
||||
public function handle(ServerRequestInterface $request)
|
||||
{
|
||||
$userChannel = 'private-user' . $request->getAttribute('actor')->id;
|
||||
$userChannel = 'private-user'.$request->getAttribute('actor')->id;
|
||||
$body = $request->getParsedBody();
|
||||
|
||||
if (array_get($body, 'channel_name') === $userChannel) {
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Flarum.
|
||||
*
|
||||
@@ -38,7 +39,7 @@ class AddClientAssets
|
||||
|
||||
if ($event->isAdmin()) {
|
||||
$event->addAssets([
|
||||
__DIR__ . '/../../js/admin/dist/extension.js'
|
||||
__DIR__.'/../../js/admin/dist/extension.js'
|
||||
]);
|
||||
$event->addBootstrapper('flarum/pusher/main');
|
||||
}
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Flarum.
|
||||
*
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Flarum.
|
||||
*
|
||||
@@ -67,7 +68,7 @@ class PushNewPosts
|
||||
|
||||
foreach ($event->users as $user) {
|
||||
if ($user->shouldAlert($blueprint::getType())) {
|
||||
$pusher->trigger('private-user' . $user->id, 'notification', null);
|
||||
$pusher->trigger('private-user'.$user->id, 'notification', null);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user