From e65935abf012f44bb7fda5e63980decd398ddb52 Mon Sep 17 00:00:00 2001 From: martinrotter Date: Wed, 30 Nov 2022 06:59:36 +0100 Subject: [PATCH] Update Documentation.md --- resources/docs/Documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/docs/Documentation.md b/resources/docs/Documentation.md index 6c9dde691..caebcb5b2 100644 --- a/resources/docs/Documentation.md +++ b/resources/docs/Documentation.md @@ -144,7 +144,7 @@ Here is the reference of methods and properties of types available in your filte | Property | `isImportant` | `Boolean` | ❌ | ✅ | Is message important? | Property | `isDeleted` | `Boolean` | ❌ | ❌ | Is message placed in recycle bin? | Method | `addEnclosure(String url, String mime_type)` | `void` | ❌ | ❌ | Adds multimedia attachment to the article. -| Method | `isAlreadyInDatabase([DuplicateCheck](#dupl-check) criteria)` | `Boolean` | ❌ | ❌ | Allows you to test if this particular message is already stored in RSS Guard's DB. See [here](#dupl-check) for possible parameters. +| Method | `isAlreadyInDatabase(DuplicateCheck criteria)` | `Boolean` | ❌ | ❌ | Allows you to test if this particular message is already stored in RSS Guard's DB. See [here](#dupl-check) for possible parameters. | Method | `findLabelId(String label_name)` | `String` | ❌ | ❌ | You enter title of the label and method returns `customId` of label which then can be used in `assignLabel()` and `deassignLabel` methods. | Method | `assignLabel(String label_id)` | `Boolean` | ❌ | ❌ | Assigns label to this message. The passed `String` value is the `customId` property of `Label` type. See its API reference for relevant info. | Method | `deassignLabel(String label_id)` | `Boolean` | ❌ | ❌ | Removes label from this message. The passed `String` value is the `customId` property of `Label` type. See its API reference for relevant info.