remove comments about tags

This commit is contained in:
Pim Kunis 2023-09-21 22:06:08 +02:00 committed by pizzapim
parent 86011c8418
commit e7252c7545
2 changed files with 1 additions and 20 deletions

View File

@ -1308,7 +1308,7 @@ properties:
- finish - finish
apprise: apprise:
type: object type: object
required: ['service_urls'] # TODO required: ['service_urls']
additionalProperties: false additionalProperties: false
properties: properties:
service_urls: service_urls:
@ -1344,12 +1344,6 @@ properties:
- warning - warning
example: example:
- failure - failure
# tags:
# type: array
# items:
# type: string
# description: |
# One or more tags to filter which services to notify.
finish: finish:
type: object type: object
properties: properties:
@ -1374,12 +1368,6 @@ properties:
- warning - warning
example: example:
- failure - failure
# tags:
# type: array
# items:
# type: string
# description: |
# One or more tags to filter which services to notify.
fail: fail:
type: object type: object
properties: properties:
@ -1404,12 +1392,6 @@ properties:
- warning - warning
example: example:
- failure - failure
# tags:
# type: array
# items:
# type: string
# description: |
# One or more tags to filter which services to notify.
states: states:
type: array type: array
items: items:

View File

@ -32,7 +32,6 @@ def ping_monitor(hook_config, config, config_filename, state, monitoring_log_lev
'title': f'A borgmatic {state.name} event happened', 'title': f'A borgmatic {state.name} event happened',
'body': f'A borgmatic {state.name} event happened', 'body': f'A borgmatic {state.name} event happened',
'notification_type': default_notify_type(state.name.lower()), 'notification_type': default_notify_type(state.name.lower()),
# 'tag': ['borgmatic'],
}, },
) )