1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-08-13 17:03:51 -04:00
kaiwa/clientapp/models/calls.js

11 lines
177 B
JavaScript
Raw Normal View History

"use strict";
var BaseCollection = require('./baseCollection');
var Call = require('./call');
module.exports = BaseCollection.extend({
type: 'calls',
model: Call
});