Issue 2490: Return review times with review scores
Status:  CannotReproduce
Owner: ----
Closed:  Aug 2014
Project Member Reported by dougk....@gmail.com, Feb 19, 2014
It may be nice if the REST API returns the time a reviewer left the approvals on a patch.  The data is already in the database, but it doesn't seem to have a corresponding REST call to obtain this information.
Aug 24, 2014
Project Member #1 zaro0508
This feature seems to have been added.   I'm using gerrit 2.8 and I do see date and time data for all votes.  It looks like this..   

"Workflow": {
  "approved": {
    "_account_id": 6987,
    "name": "Batman",
    "email": "batman@gmail.com",
    "avatars": []
  },
  "all": [
    {
      "value": 0,
      "_account_id": 1054,
      "name": "Robin",
      "email": "robin@gmail.com",
      "avatars": []
    },
    {
      "value": 1,
      "date": "2014-08-24 13:26:45.000000000",
      "_account_id": 6987,
      "name": "Batman",
      "email": "batman@gmail.com",
      "avatars": []
    },
  "values": {
    "-1": "Work in progress",
    " 0": "Ready for reviews",
    "+1": "Approved"
  }
}

Status: CannotReproduce