-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken.js
48 lines (41 loc) · 754 Bytes
/
token.js
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
const yapi = require('../yapi.js');
const baseModel = require('./base.js');
class tokenModel extends baseModel {
getName() {
return 'token';
}
getSchema() {
return {
project_id: { type: Number, required: true },
token: String
};
}
save(data) {
let m = new this.model(data);
return m.save();
}
get(project_id) {
return this.model.findOne({
project_id: project_id
});
}
findId(token) {
return this.model
.findOne({
token: token
})
.select('project_id')
.exec();
}
up(project_id, token) {
return this.model.update(
{
project_id: project_id
},
{
token: token
}
);
}
}
module.exports = tokenModel;