1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-08-13 17:03:51 -04:00
kaiwa/clientapp/models/contactRequest.js
2013-10-16 10:48:40 -07:00

13 lines
199 B
JavaScript

/*global app, me*/
"use strict";
var HumanModel = require('human-model');
module.exports = HumanModel.define({
type: 'contactRequest',
props: {
jid: ['string', true, '']
}
});