1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
Org = new Mongo.Collection('org');
/**
* A Organization in wekan
*/
Org.attachSchema(
new SimpleSchema({
_id: {
/**
* the organization id
*/
type: Number,
optional: true,
// eslint-disable-next-line consistent-return
autoValue() {
if (this.isInsert && !this.isSet) {
return incrementCounter('counters', 'orgId', 1);
}
},
},
version: {
/**
* the version of the organization
*/
type: Number,
optional: true,
},
name: {
/**
* name of the organization
*/
type: String,
optional: true,
max: 190,
},
address1: {
/**
* address1 of the organization
*/
type: String,
optional: true,
max: 255,
},
address2: {
/**
* address2 of the organization
*/
type: String,
optional: true,
max: 255,
},
city: {
/**
* city of the organization
*/
type: String,
optional: true,
max: 255,
},
state: {
/**
* state of the organization
*/
type: String,
optional: true,
max: 255,
},
zipCode: {
/**
* zipCode of the organization
*/
type: String,
optional: true,
max: 50,
},
country: {
/**
* country of the organization
*/
type: String,
optional: true,
max: 255,
},
billingEmail: {
/**
* billingEmail of the organization
*/
type: String,
optional: true,
max: 255,
},
createdAt: {
/**
* creation date of the organization
*/
type: Date,
// eslint-disable-next-line consistent-return
autoValue() {
if (this.isInsert) {
return new Date();
} else {
this.unset();
}
},
},
modifiedAt: {
type: Date,
denyUpdate: false,
// eslint-disable-next-line consistent-return
autoValue() {
if (this.isInsert || this.isUpsert || this.isUpdate) {
return new Date();
} else {
this.unset();
}
},
},
}),
);
if (Meteor.isServer) {
// Index for Organization name.
Meteor.startup(() => {
Org._collection._ensureIndex({ name: -1 });
});
}
export default Org;
|