mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-11 20:15:00 -05:00
17 lines
352 B
JavaScript
17 lines
352 B
JavaScript
"use strict";
|
|
|
|
var StrictModel = require('strictmodel').Model;
|
|
|
|
|
|
module.exports = StrictModel.extend({
|
|
initialize: function () {},
|
|
type: 'resource',
|
|
session: {
|
|
jid: ['string', true],
|
|
status: ['string', true, ''],
|
|
show: ['string', true, ''],
|
|
priority: ['number', true, 0],
|
|
idleSince: 'date'
|
|
}
|
|
});
|