PageRenderTime 45ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/public/js/collections/statuses.js

http://github.com/bkeepers/monologue
JavaScript | 12 lines | 4 code | 0 blank | 8 comment | 0 complexity | 14640a9f6e5486f3c76ddc1807456917 MD5 | raw file
  1. //
  2. // Collection of statuses.
  3. //
  4. // Reponsibility:
  5. // Sync status models with the server
  6. //
  7. // Dependencies
  8. // * Status model
  9. Monologue.Collection.Statuses = Backbone.Collection.extend({
  10. model: Monologue.Model.Status,
  11. url: '/statuses'
  12. });