mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-14 13:35:00 -05:00
13 lines
199 B
JavaScript
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, '']
|
|
}
|
|
});
|