mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-14 05:25:02 -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
|
||
|
});
|