diff options
Diffstat (limited to 'server/models/pod/pod.ts')
-rw-r--r-- | server/models/pod/pod.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/models/pod/pod.ts b/server/models/pod/pod.ts index e1088977f..56918e358 100644 --- a/server/models/pod/pod.ts +++ b/server/models/pod/pod.ts | |||
@@ -13,7 +13,7 @@ import { | |||
13 | } from './pod-interface' | 13 | } from './pod-interface' |
14 | 14 | ||
15 | let Pod: Sequelize.Model<PodInstance, PodAttributes> | 15 | let Pod: Sequelize.Model<PodInstance, PodAttributes> |
16 | let toFormatedJSON: PodMethods.ToFormatedJSON | 16 | let toFormattedJSON: PodMethods.ToFormattedJSON |
17 | let countAll: PodMethods.CountAll | 17 | let countAll: PodMethods.CountAll |
18 | let incrementScores: PodMethods.IncrementScores | 18 | let incrementScores: PodMethods.IncrementScores |
19 | let list: PodMethods.List | 19 | let list: PodMethods.List |
@@ -86,7 +86,7 @@ export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.Da | |||
86 | updatePodsScore, | 86 | updatePodsScore, |
87 | removeAll | 87 | removeAll |
88 | ] | 88 | ] |
89 | const instanceMethods = [ toFormatedJSON ] | 89 | const instanceMethods = [ toFormattedJSON ] |
90 | addMethodsToModel(Pod, classMethods, instanceMethods) | 90 | addMethodsToModel(Pod, classMethods, instanceMethods) |
91 | 91 | ||
92 | return Pod | 92 | return Pod |
@@ -94,7 +94,7 @@ export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.Da | |||
94 | 94 | ||
95 | // ------------------------------ METHODS ------------------------------ | 95 | // ------------------------------ METHODS ------------------------------ |
96 | 96 | ||
97 | toFormatedJSON = function (this: PodInstance) { | 97 | toFormattedJSON = function (this: PodInstance) { |
98 | const json = { | 98 | const json = { |
99 | id: this.id, | 99 | id: this.id, |
100 | host: this.host, | 100 | host: this.host, |