Hello all,
I’m new with Gitea and I have an important question.
Usually with GitHub I used API to get some commit informations.
In response I found the list of files impacted and each modification
With Gitea we get almost the same data but without files.
I would like know if it’s normal or if i forgot a configuration.
If it’s normal, do you know if that could be implemented in the futur ?
GitHub exemple response for commit reference:
“files”: [
{
“filename”: “file1.txt”,
“additions”: 10,
“deletions”: 2,
“changes”: 12,
“status”: “modified”,
“raw_url”: “https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt”,
“blob_url”: “https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt”,
“patch”: “@@ -29,7 +29,7 @@\n…”
}
Thanks
Github response