(user_id, item_id, callback)
| 222 | } |
| 223 | |
| 224 | function recommendedUsers(user_id, item_id, callback) { |
| 225 | return withMandatory("user_id", user_id, function () { |
| 226 | var id = item_id || currentPageId(params.retain), |
| 227 | url = recommendedUsersUrl(user_id, id); |
| 228 | jsonpCall(url, callback); |
| 229 | }); |
| 230 | } |
| 231 | |
| 232 | function addUser(user_id, options, callback) { |
| 233 | return withMandatory("user_id", user_id, function () { |
nothing calls this directly
no test coverage detected