(user_id, options, callback)
| 230 | } |
| 231 | |
| 232 | function addUser(user_id, options, callback) { |
| 233 | return withMandatory("user_id", user_id, function () { |
| 234 | var url = userUrl(user_id, options || {}); |
| 235 | jsonpCall(url, callback); |
| 236 | }); |
| 237 | } |
| 238 | |
| 239 | function addItem(item_id, type, title, callback) { |
| 240 | return withMandatory("item_id", item_id, function () { |
nothing calls this directly
no test coverage detected