diff options
| author | Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com> | 2019-05-24 03:26:56 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-05-24 03:26:56 +0900 |
| commit | 6de08d07a3d5cc4db2c9900f59a66ccca8643918 (patch) | |
| tree | 353ffbed5d87cbb1c4635e43061781dd20f49e8d /src/config | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | misskey-6de08d07a3d5cc4db2c9900f59a66ccca8643918.tar.gz misskey-6de08d07a3d5cc4db2c9900f59a66ccca8643918.tar.bz2 misskey-6de08d07a3d5cc4db2c9900f59a66ccca8643918.zip | |
Support PostgreSQL Extra Connection options (#4970)
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/types.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/types.ts b/src/config/types.ts index 7da9820f22..c35bc63573 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -14,6 +14,7 @@ export type Source = { db: string; user: string; pass: string; + extra?: { [x: string]: string }; }; redis: { host: string; |