I'm writing a simple web app that requires a poll - using Backbone which interfaces with a RESTful Node API and a Mongo DB.
The premise is simple: there are 5 topics, the web user can select one and lodge a vote. This will insert a document into Mongo which can then be counted for total votes.
Should I use BB models for the actual lodging of the vote or is just directly firing an API call to Node sufficient? I know that when modifying BB models you would use .save() but in this situation I'm not creating another model for the front-end - I'm just inserting a document into the DB.
Any ideas?