mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update AdminCuratedRegisterController, filter confirmation activities from activitylog
This commit is contained in:
parent
2f48df8ca8
commit
ab9ecb6efd
1 changed files with 4 additions and 0 deletions
|
@ -104,6 +104,10 @@ class AdminCuratedRegisterController extends Controller
|
||||||
|
|
||||||
foreach ($activities as $activity) {
|
foreach ($activities as $activity) {
|
||||||
$idx++;
|
$idx++;
|
||||||
|
|
||||||
|
if ($activity->type === 'user_resend_email_confirmation') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if ($activity->from_user) {
|
if ($activity->from_user) {
|
||||||
$userResponses->push($activity);
|
$userResponses->push($activity);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue