Update api docs and remove old attribute from User entity.
Created by: dblessing
The API docs incorrectly referenced a few attributes associated with users. The 'blocked' attribute has been replaced with 'state'. Also, 'dark_scheme' seems to no longer be available in the User model so it should be removed from the exposed attributes in the API User entity.
The screenshot shows the available attributes prior to this update. You can see that dark_scheme is not present, although it was exposed via User entity. Also, you can see that blocked is not present and is instead replaced with state.
Merge request reports
Activity
Created by: coveralls
Coverage decreased (-0%) when pulling f6d46c138f3a6c0cae46a316be8a416b33573a50 on bke-drewb:apidocs into 45f9cca9 on gitlabhq:master.
By Administrator on 2013-05-29T00:14:26 (imported from GitLab project)
By Administrator on 2013-05-29T00:14:26 (imported from GitLab)
14 14 "username": "john_smith", 15 15 "email": "john@example.com", 16 16 "name": "John Smith", 17 "blocked": false, 17 "state": "active", 18 18 "created_at": "2012-05-23T08:00:58Z", 19 19 "bio": null, 20 20 "skype": "", 21 21 "linkedin": "", 22 22 "twitter": "", 23 "dark_scheme": false, 14 14 "username": "john_smith", 15 15 "email": "john@example.com", 16 16 "name": "John Smith", 17 "blocked": false, 17 "state": "active", 18 18 "created_at": "2012-05-23T08:00:58Z", 19 19 "bio": null, 20 20 "skype": "", 21 21 "linkedin": "", 22 22 "twitter": "", 23 "dark_scheme": false,