Disables Quatrix for specified user.
| Name | Type | Description |
user_id required | string | specified user id |
cb optional | function | callback function |
this.disableUserShare = function(user_id, cb) {
return _request({
method: 'GET',
url: '/user/remove_ishare/'+user_id,
callback: cb
});
}; |