Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
murvinlai committed Jan 11, 2013
1 parent 6c00642 commit a13d692
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion schema/me.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
/*
* Schema for a person identity
* Schema for a person identity s
*/

var me = {


name : {
title : { 'type':String, 'default': '' }, // Mr. Mrs, Miss, Dr, etc
first : { 'type':String, 'default': '' },
middle : { 'type':String, 'default': '' },
last : { 'type':String, 'default': '' },
init : { 'type':String, 'default': '' }
},

xid : { 'type':String, 'default': '' } // external id
}

module.exports.me;
2 changes: 2 additions & 0 deletions schema/me_contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
*/

var me_contact = {

mid : { 'type':String, 'default': '' }, /* Me Id */
phone : {
home : { 'type':String, 'default': '' },
fax : { 'type':String, 'default': '' },
Expand Down

0 comments on commit a13d692

Please sign in to comment.