1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-08-13 17:03:51 -04:00
kaiwa/clientapp/models/resource.js
2013-08-29 20:38:28 -07:00

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