kaiwa/clientapp/models/resource.js

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'
}
});