Yehonatan Daniv
Yehonatan Daniv
Hey @smalot, thanks for the kind ping (: Unfortunately I can't seem to be able to get to my projects, but if there's an interest I'll do my best.
@smalot let me see if I understand your question correctly: With BBWS (Backbone.WS) you can handle server-client bi-directional communication: 1. server => client: using `ws:message` events - and of course...
@smalot thanks! will do my best...
@smalot correct, right [here](https://github.com/ydaniv/backbone-ws/blob/master/backbone-ws.js#L255). What do you mean by "nothing is sent"? From what I see it should send everything just the same, only using your predefined `method` instead of...
@smalot if you call `collection.send()` this should work as expected. If what you want is to call `collection.save()` together with `useSync: true` and have it persist to the server, this...
hey @sramana, thanks for th PR! I am currently on vacation and will take a look next week. I am OK with some of the proposals in general, but needs...
Hey @lukeaus, waiting your response on my review. Thanks!
Hey @lukeaus, thanks for reporting! I agree that the extra object creation seems redundant in this case, but what I can't figure is why your test is failing on primary...
So the problem here is your logic in `get_create_data()`. What you should be doing is: ``` def get_create_data(self): self.worker = WorkerFactory() return { 'worker': self.worker.pk, 'bar': 1 } ``` And...
@lukeaus ok, that was just a general idea. So instead try setting `self.worker2 = WorkerFactory()` in `setUp()`, and in `get_create_data()` use this `worker2`. Shouldn't this solve it?