From c328263ea8ef10ba67450afe1a312fd2f0c6cf91 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Wed, 4 Aug 2021 07:13:05 -0400 Subject: [PATCH] Updated Development_Contribution (markdown) --- Development_Contribution.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Development_Contribution.md b/Development_Contribution.md index f74b446..c81b9b4 100644 --- a/Development_Contribution.md +++ b/Development_Contribution.md @@ -19,8 +19,9 @@ More details can be found [here](https://github.com/caronc/apprise/tree/master/b # Building Your Own Notification Plugin It basically boils down to this: -- You just need to create you just need to create a single notification in the `/plugins/NotifyServiceName.py` +- You just need to create a single notification python file as `/plugins/NotifyServiceName.py` - Make sure you call the class inside `NotifyServiceName` and inherit from `NotifyBase` +- Make sure your class object name is the same as the filename you create. This is very important! - From there you just need to at a bare minimum define: - **the class objects**: - `service_name`: A string that acts as a default descriptive name associated with the Notification