Skip to content
Snippets Groups Projects
Commit 58c0642a authored by Alexander Purr's avatar Alexander Purr
Browse files

refs #16821 [fid] speed up csv export by limit fidis user request to one

* response contains complete user list inclusive all relevant details
* see also #16938
parent 324c2659
No related merge requests found
......@@ -776,9 +776,6 @@ class UserController extends AbstractBase
);
$output = implode("\t",$fields)."\n";
foreach ($userList as $user) {
// we need to load the actual user object since some
// properties are missing from the overview list
$user = $this->client->requestUserDetails($user->id);
$output .= $user->export($fields)."\n";
}
$response->setContent($output);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment