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
|
Integrations = new Mongo.Collection('integrations');
Integrations.attachSchema(new SimpleSchema({
enabled: {
type: Boolean,
defaultValue: true,
},
title: {
type: String,
optional: true,
},
type: {
type: String,
},
url: { // URL validation regex (https://mathiasbynens.be/demo/url-regex)
type: String,
},
token: {
type: String,
optional: true,
},
boardId: {
type: String,
},
createdAt: {
type: Date,
denyUpdate: false,
autoValue() { // eslint-disable-line consistent-return
if (this.isInsert) {
return new Date();
} else {
this.unset();
}
},
},
userId: {
type: String,
autoValue() { // eslint-disable-line consistent-return
if (this.isInsert || this.isUpdate) {
return this.userId;
}
},
},
}));
Integrations.allow({
insert(userId, doc) {
return allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
},
update(userId, doc) {
return allowIsBoardAdmin(userId, Boards.findOne(doc.boardId));
},
fetch: ['boardId'],
});
|