aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update-host.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2017-12-12 17:53:50 +0100
committerChocobozzz <me@florianbigard.com>2017-12-13 16:50:33 +0100
commit3fd3ab2d34d512b160a5e6084d7609be7b4f4452 (patch)
treee5ca358287fca6ecacce83defcf23af1e8e9f419 /scripts/update-host.ts
parentc893d4514e6ecbf282c7985fe5f82b8acd8a1137 (diff)
downloadPeerTube-3fd3ab2d34d512b160a5e6084d7609be7b4f4452.tar.gz
PeerTube-3fd3ab2d34d512b160a5e6084d7609be7b4f4452.tar.zst
PeerTube-3fd3ab2d34d512b160a5e6084d7609be7b4f4452.zip
Move models to typescript-sequelize
Diffstat (limited to 'scripts/update-host.ts')
-rwxr-xr-xscripts/update-host.ts12
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/update-host.ts b/scripts/update-host.ts
index 759443623..ba4656b75 100755
--- a/scripts/update-host.ts
+++ b/scripts/update-host.ts
@@ -1,12 +1,14 @@
1import { database as db } from '../server/initializers/database' 1import { getServerAccount } from '../server/helpers'
2import { getServerAccount } from '../server/helpers/utils' 2import { initDatabase } from '../server/initializers'
3import { AccountFollowModel } from '../server/models/account/account-follow'
4import { VideoModel } from '../server/models/video/video'
3 5
4db.init(true) 6initDatabase(true)
5 .then(() => { 7 .then(() => {
6 return getServerAccount() 8 return getServerAccount()
7 }) 9 })
8 .then(serverAccount => { 10 .then(serverAccount => {
9 return db.AccountFollow.listAcceptedFollowingUrlsForApi([ serverAccount.id ], undefined) 11 return AccountFollowModel.listAcceptedFollowingUrlsForApi([ serverAccount.id ], undefined)
10 }) 12 })
11 .then(res => { 13 .then(res => {
12 return res.total > 0 14 return res.total > 0
@@ -18,7 +20,7 @@ db.init(true)
18 } 20 }
19 21
20 console.log('Updating torrent files.') 22 console.log('Updating torrent files.')
21 return db.Video.list() 23 return VideoModel.list()
22 }) 24 })
23 .then(videos => { 25 .then(videos => {
24 const tasks: Promise<any>[] = [] 26 const tasks: Promise<any>[] = []