mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-26 11:12:16 -05:00
18 lines
377 B
JavaScript
18 lines
377 B
JavaScript
/*global app, me, client*/
|
|
"use strict";
|
|
|
|
var _ = require('underscore');
|
|
var HumanModel = require('human-model');
|
|
var logger = require('andlog');
|
|
|
|
|
|
module.exports = HumanModel.define({
|
|
type: 'call',
|
|
session: {
|
|
contact: 'object',
|
|
jingleSession: 'object',
|
|
state: ['string', true, 'inactive'],
|
|
multiUser: ['boolean', true, false]
|
|
}
|
|
});
|