Retrieve changes
Retrieve all changes made to the system in the current session.
URL: /changes
Method: GET
Query Options
author
string
Use to get only changes made by an author
Success Responses
Code : 200 OK
Content: [change] where change has the following structure:
{
"type": "string",
"label": "string",
"package": "string",
"timestamp": "string",
"author": "string",
"sourceCode": "string"
}And type can be one of the following:
"AddMethod""RemoveMethod""ClassifyMethod""RenameMethod""AddClass""CommentClass""RemoveClass""RenameClass""AddClassCategory""RenameClassCategory""RemoveClassCategory""AddInstanceVariable""RemoveInstanceVariable""RenameInstanceVariable""MoveUpInstanceVariable""MoveDownInstanceVariable""AddClassVariable""RemoveClassVariable""RenameClassVariable""RenameCategory""RemoveCategory""AddPackage""RemovePackage""RenamePackage"
Example:: retrieve changes made by guille, GET /changes?author=guille.
Last updated