We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9dab271 + 89fcf7e commit e347f3dCopy full SHA for e347f3d
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## Version 0.6.1 (2015-05-27)
2
+
3
+ - feat: support for new route /me/group (getMyGroups)
4
5
### Version 0.6 (2015-05-25)
6
7
- feat: queue permission handling
camomile.js
@@ -152,6 +152,12 @@
152
_api('me').get(callback);
153
};
154
155
+ my.getMyGroups = function (callback) {
156
+ callback = callback || default_callback;
157
158
+ _api('me')('group').get(callback);
159
+ };
160
161
my.update_password = function (new_password, callback) {
162
callback = callback || default_callback;
163
0 commit comments