enhance(backend): ノートのハッシュタグもMeilisearchに突っ込むように
今後ハッシュタグ検索とか実装するときのため
This commit is contained in:
parent
df924d18f1
commit
26d85c8bed
|
@ -82,6 +82,7 @@ export class SearchService {
|
||||||
'userId',
|
'userId',
|
||||||
'userHost',
|
'userHost',
|
||||||
'channelId',
|
'channelId',
|
||||||
|
'tags',
|
||||||
],
|
],
|
||||||
typoTolerance: {
|
typoTolerance: {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
|
@ -107,6 +108,7 @@ export class SearchService {
|
||||||
channelId: note.channelId,
|
channelId: note.channelId,
|
||||||
cw: note.cw,
|
cw: note.cw,
|
||||||
text: note.text,
|
text: note.text,
|
||||||
|
tags: note.tags,
|
||||||
}], {
|
}], {
|
||||||
primaryKey: 'id',
|
primaryKey: 'id',
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue