diff options
Diffstat (limited to 'server/helpers/utils.ts')
-rw-r--r-- | server/helpers/utils.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/server/helpers/utils.ts b/server/helpers/utils.ts index 0ebbf48a8..39957c90f 100644 --- a/server/helpers/utils.ts +++ b/server/helpers/utils.ts | |||
@@ -5,6 +5,7 @@ import { pseudoRandomBytesPromise } from './core-utils' | |||
5 | import { CONFIG, database as db } from '../initializers' | 5 | import { CONFIG, database as db } from '../initializers' |
6 | import { ResultList } from '../../shared' | 6 | import { ResultList } from '../../shared' |
7 | import { VideoResolution } from '../../shared/models/videos/video-resolution.enum' | 7 | import { VideoResolution } from '../../shared/models/videos/video-resolution.enum' |
8 | import { AccountInstance } from '../models/account/account-interface' | ||
8 | 9 | ||
9 | function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) { | 10 | function badRequest (req: express.Request, res: express.Response, next: express.NextFunction) { |
10 | return res.type('json').status(400).end() | 11 | return res.type('json').status(400).end() |
@@ -78,6 +79,15 @@ function resetSequelizeInstance (instance: Sequelize.Instance<any>, savedFields: | |||
78 | }) | 79 | }) |
79 | } | 80 | } |
80 | 81 | ||
82 | let applicationAccount: AccountInstance | ||
83 | async function getApplicationAccount () { | ||
84 | if (applicationAccount === undefined) { | ||
85 | applicationAccount = await db.Account.loadApplication() | ||
86 | } | ||
87 | |||
88 | return Promise.resolve(applicationAccount) | ||
89 | } | ||
90 | |||
81 | type SortType = { sortModel: any, sortValue: string } | 91 | type SortType = { sortModel: any, sortValue: string } |
82 | 92 | ||
83 | // --------------------------------------------------------------------------- | 93 | // --------------------------------------------------------------------------- |
@@ -89,5 +99,6 @@ export { | |||
89 | isSignupAllowed, | 99 | isSignupAllowed, |
90 | computeResolutionsToTranscode, | 100 | computeResolutionsToTranscode, |
91 | resetSequelizeInstance, | 101 | resetSequelizeInstance, |
102 | getApplicationAccount, | ||
92 | SortType | 103 | SortType |
93 | } | 104 | } |