this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update post and profile schemas: more fields, consolidate URLs

+7 -2
+4 -2
search/post_schema.json
··· 79 79 "lang_code": { "type": "keyword", "normalizer": "default" }, 80 80 "lang_code_iso2": { "type": "keyword", "normalizer": "default" }, 81 81 "mention_did": { "type": "keyword", "normalizer": "default" }, 82 - "link_url": { "type": "keyword", "normalizer": "default" }, 83 - "embed_url": { "type": "keyword", "normalizer": "default" }, 84 82 "embed_aturi": { "type": "keyword", "normalizer": "default" }, 85 83 "reply_root_aturi": { "type": "keyword", "normalizer": "default" }, 86 84 "embed_img_count": { "type": "integer" }, ··· 88 86 "embed_img_alt_text_ja": { "type": "text", "analyzer": "textJapanese", "search_analyzer": "textJapaneseSearch", "copy_to": "everything_ja" }, 89 87 "self_label": { "type": "keyword", "normalizer": "default" }, 90 88 89 + "url": { "type": "keyword", "normalizer": "default" }, 90 + "domain": { "type": "keyword", "normalizer": "default" }, 91 91 "tag": { "type": "keyword", "normalizer": "default" }, 92 92 "emoji": { "type": "keyword", "normalizer": "caseSensitive" }, 93 + 94 + "likesFuzzy": { "type": "int" }, 93 95 94 96 "everything": { "type": "text", "analyzer": "textIcu", "search_analyzer": "textIcuSearch" }, 95 97 "everything_ja": { "type": "text", "analyzer": "textJapanese", "search_analyzer": "textJapaneseSearch" },
+3
search/profile_schema.json
··· 52 52 "img_alt_text": { "type": "text", "analyzer": "textIcu", "search_analyzer": "textIcuSearch", "copy_to": "everything" }, 53 53 "self_label": { "type": "keyword", "normalizer": "default" }, 54 54 55 + "url": { "type": "keyword", "normalizer": "default" }, 56 + "domain": { "type": "keyword", "normalizer": "default" }, 55 57 "tag": { "type": "keyword", "normalizer": "default" }, 56 58 "emoji": { "type": "keyword", "normalizer": "caseSensitive" }, 57 59 ··· 59 61 "has_banner": { "type": "boolean" }, 60 62 61 63 "pagerank": { "type": "float" }, 64 + "followersFuzzy": { "type": "int" }, 62 65 63 66 "typeahead": { "type": "search_as_you_type", "analyzer": "textIcu", "search_analyzer": "textIcuSearch" }, 64 67 "everything": { "type": "text", "analyzer": "textIcu", "search_analyzer": "textIcuSearch" }