From 149f3ffff15dce27337665abba520d11bc3014dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wieland=20Sch=C3=B6bl?= Date: Tue, 17 Sep 2019 10:59:19 +0200 Subject: [PATCH] feat: add mappingIgnoredTags property to SCBackend --- src/config/backend.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/config/backend.ts b/src/config/backend.ts index d805390c..f725aee9 100644 --- a/src/config/backend.ts +++ b/src/config/backend.ts @@ -37,6 +37,13 @@ export interface SCBackendConfiguration { */ hiddenTypes: SCThingType[]; + /** + * A list of tags that will be ignored by the mapping generator + * + * The ignored tags should mainly be tags that are irrelevant to the mapping. The tags should include the '@'. + */ + mappingIgnoredTags: string[]; + /** * Maximum number of queries, that can be used in MultiSearchRoute */