diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-15 11:00:25 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-27 19:40:51 +0100 |
commit | 608624252466acf9f1d9ee1c1170bd4fe4d18d18 (patch) | |
tree | 47eab55bb5421b7fe88e0b2ac743a436fd9561cf /server/initializers/database.ts | |
parent | 51548b31815c6f96f314ae96588a9adca150519d (diff) | |
download | PeerTube-608624252466acf9f1d9ee1c1170bd4fe4d18d18.tar.gz PeerTube-608624252466acf9f1d9ee1c1170bd4fe4d18d18.tar.zst PeerTube-608624252466acf9f1d9ee1c1170bd4fe4d18d18.zip |
Rename Pod -> Server
Diffstat (limited to 'server/initializers/database.ts')
-rw-r--r-- | server/initializers/database.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/initializers/database.ts b/server/initializers/database.ts index 1383bb33b..19b5a0466 100644 --- a/server/initializers/database.ts +++ b/server/initializers/database.ts | |||
@@ -18,7 +18,7 @@ import { UserModel } from '../models/account/user-interface' | |||
18 | import { AccountVideoRateModel } from '../models/account/account-video-rate-interface' | 18 | import { AccountVideoRateModel } from '../models/account/account-video-rate-interface' |
19 | import { AccountFollowModel } from '../models/account/account-follow-interface' | 19 | import { AccountFollowModel } from '../models/account/account-follow-interface' |
20 | import { TagModel } from './../models/video/tag-interface' | 20 | import { TagModel } from './../models/video/tag-interface' |
21 | import { PodModel } from './../models/pod/pod-interface' | 21 | import { ServerModel } from '../models/server/server-interface' |
22 | import { OAuthTokenModel } from './../models/oauth/oauth-token-interface' | 22 | import { OAuthTokenModel } from './../models/oauth/oauth-token-interface' |
23 | import { OAuthClientModel } from './../models/oauth/oauth-client-interface' | 23 | import { OAuthClientModel } from './../models/oauth/oauth-client-interface' |
24 | import { JobModel } from './../models/job/job-interface' | 24 | import { JobModel } from './../models/job/job-interface' |
@@ -38,7 +38,7 @@ const database: { | |||
38 | Job?: JobModel, | 38 | Job?: JobModel, |
39 | OAuthClient?: OAuthClientModel, | 39 | OAuthClient?: OAuthClientModel, |
40 | OAuthToken?: OAuthTokenModel, | 40 | OAuthToken?: OAuthTokenModel, |
41 | Pod?: PodModel, | 41 | Server?: ServerModel, |
42 | Tag?: TagModel, | 42 | Tag?: TagModel, |
43 | AccountVideoRate?: AccountVideoRateModel, | 43 | AccountVideoRate?: AccountVideoRateModel, |
44 | AccountFollow?: AccountFollowModel, | 44 | AccountFollow?: AccountFollowModel, |