ENH Add extension hook for modifying submissions GridField (#1273)

This commit is contained in:
James Cocker 2024-03-12 21:19:31 +00:00 committed by GitHub
parent 045f6c0e57
commit 6191b4984d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -341,6 +341,9 @@ SQL;
$this->Submissions()->sort('Created', 'DESC'),
$config
);
$this->extend('updateSubmissionsGridField', $submissions);
return $submissions;
}