PageRenderTime 43ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/client/src/collections/contacts.js

https://github.com/robertd/benm
JavaScript | 7 lines | 6 code | 1 blank | 0 comment | 0 complexity | fa8e52ca7908e923f5cabea29f3fb81e MD5 | raw file
  1. var Backbone = require('backbone'),
  2. ContactModel = require('../models/contact');
  3. module.exports = ContactsCollection = Backbone.Collection.extend({
  4. model: ContactModel,
  5. url: '/api/contacts'
  6. });