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 Annie Kyles
parent 08b420cafe
commit 8d4ee0a3a4
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;
}