summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2020-03-20 14:00:34 +0900
committerGitHub <noreply@github.com>2020-03-20 14:00:34 +0900
commit5bbd4ae703f12b20e1f308f430b65f9e30bfff21 (patch)
treeaee132c07f013cb3eb0c0d4f2a5347aebff65892 /src/config
parentuse username if name was empty (#6166) (diff)
downloadmisskey-5bbd4ae703f12b20e1f308f430b65f9e30bfff21.tar.gz
misskey-5bbd4ae703f12b20e1f308f430b65f9e30bfff21.tar.bz2
misskey-5bbd4ae703f12b20e1f308f430b65f9e30bfff21.zip
ElasticSearchで認証ができるように (#6158)
Diffstat (limited to 'src/config')
-rw-r--r--src/config/types.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/config/types.ts b/src/config/types.ts
index 78ae025133..a33901bde6 100644
--- a/src/config/types.ts
+++ b/src/config/types.ts
@@ -27,9 +27,10 @@ export type Source = {
elasticsearch: {
host: string;
port: number;
- pass: string;
- index?: string;
ssl?: boolean;
+ user?: string;
+ pass?: string;
+ index?: string;
};
proxy?: string;