rename admins-private to users.registration

This commit is contained in:
2026-01-09 14:41:10 +01:00
parent 69d6a77ff1
commit 9b70b09173
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
use Illuminate\Support\Facades\Broadcast;
Broadcast::channel('admins-private', function ($user) {
Broadcast::channel('users.registration', function ($user) {
return in_array($user->role, [1, 2]);
});