mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-05 17:15:04 -05:00
18 lines
373 B
JavaScript
18 lines
373 B
JavaScript
"use strict";
|
|
|
|
var HumanModel = require('human-model');
|
|
|
|
|
|
module.exports = HumanModel.define({
|
|
initialize: function () {},
|
|
type: 'resource',
|
|
session: {
|
|
jid: ['string', true],
|
|
status: ['string', true, ''],
|
|
show: ['string', true, ''],
|
|
priority: ['number', true, 0],
|
|
idleSince: 'date',
|
|
discoInfo: 'object'
|
|
}
|
|
});
|