Ibaraki DoujiOriginal post
Rank 5: Hypervisor
Continuing my setting up of the gitlab VCS, i saw the events where not working, after some digging, it seems like in the event body there is a project property and it's treated as a projectId in the request process.
Apparently it's only gitlab as others VCS providers use repository instead.
As a fix you could add a check if the project property is a string or not in the app/init/resources/request.php file
Summary
Gitlab VCS events not functional due to incorrect property name in event body. `project` instead of `repository`. AI suggestion for fix involves modifying `app/init/resources/request.php` file to check for string type of `project` property and handle accordingly.