mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-14 13:35:00 -05:00
11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
"use strict";
|
|
|
|
var BaseCollection = require('./baseCollection');
|
|
var Call = require('./call');
|
|
|
|
|
|
module.exports = BaseCollection.extend({
|
|
type: 'calls',
|
|
model: Call
|
|
});
|