mirror of https://github.com/caronc/apprise
Updated Development_Contribution (markdown)
parent
2e49cef2bb
commit
7775de037c
|
@ -78,6 +78,16 @@ class NotifyFooBar(NotifyBase):
|
||||||
# otherwise return False if it failed.
|
# otherwise return False if it failed.
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
def __len__(self):
|
||||||
|
"""
|
||||||
|
Returns the number of targets associated with this notification
|
||||||
|
"""
|
||||||
|
# By default if this isn't defined then one (1) is always returned
|
||||||
|
# but there are cases where you make accept many notification end points
|
||||||
|
# to notify. So this function may return something like len(self.targets).
|
||||||
|
|
||||||
|
return 1
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def parse_url(url):
|
def parse_url(url):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue