Skip to content
Snippets Groups Projects
Verified Commit 325b0587 authored by Damien's avatar Damien
Browse files

FIX #12070 TIME 0:05 Fix indexing

parent 68577e7a
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ class IndexingController
return $response->withStatus(400)->withJson(['errors' => 'Param groupId must be an integer val']);
}
$indexingParameters = IndexingController::getIndexingParameters(['login' => $GLOBALS['userId'], 'groupId' => $args['groupId']]);
$indexingParameters = IndexingController::getIndexingParameters(['userId' => $GLOBALS['id'], 'groupId' => $args['groupId']]);
if (!empty($indexingParameters['errors'])) {
return $response->withStatus(403)->withJson($indexingParameters);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment