Add support for notes (#860)

* Add support for notes

* Ensure consistency with notes from ready payload

* Add getter method for users

* Minor tweaks

* Update warning messages

* More minor fixes
This commit is contained in:
Programmix
2016-10-30 20:06:09 -07:00
committed by Schuyler Cebulskie
parent a673a97441
commit 6dc95cd084
9 changed files with 92 additions and 0 deletions

View File

@@ -616,6 +616,11 @@ class RESTMethods {
new ClientOAuth2Application(this.rest.client, app)
);
}
setNote(user, note) {
return this.rest.makeRequest('put', Constants.Endpoints.note(user.id), true, { note })
.then(() => user);
}
}
module.exports = RESTMethods;