diff options
Diffstat (limited to 'server/models/pod/pod.ts')
-rw-r--r-- | server/models/pod/pod.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/pod/pod.ts b/server/models/pod/pod.ts index 4c6e63024..4fe7fda1c 100644 --- a/server/models/pod/pod.ts +++ b/server/models/pod/pod.ts | |||
@@ -96,12 +96,12 @@ export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.Da | |||
96 | 96 | ||
97 | // ------------------------------ METHODS ------------------------------ | 97 | // ------------------------------ METHODS ------------------------------ |
98 | 98 | ||
99 | toFormatedJSON = function () { | 99 | toFormatedJSON = function (this: PodInstance) { |
100 | const json = { | 100 | const json = { |
101 | id: this.id, | 101 | id: this.id, |
102 | host: this.host, | 102 | host: this.host, |
103 | email: this.email, | 103 | email: this.email, |
104 | score: this.score, | 104 | score: this.score as number, |
105 | createdAt: this.createdAt | 105 | createdAt: this.createdAt |
106 | } | 106 | } |
107 | 107 | ||