1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2025-02-19 20:41:48 -05:00

18 lines
380 B
JavaScript
Raw Normal View History

/*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: {
contactJid: 'object',
jingleSession: 'object',
state: ['string', true, 'inactive'],
multiUser: ['boolean', true, false]
}
});