rattail-demo/rattail_demo/emails.py
Lance Edgar 4288e1ce64 Override the CORE-API -> Rattail Demo importer for Store data
this lets the demo have random extra Store records and the importer will just
ignore them
2021-01-28 13:29:22 -06:00

24 lines
864 B
Python

# -*- coding: utf-8; -*-
"""
Email definitions
"""
# bring in some common config from rattail
from rattail.emails import (upgrade_failure,
upgrade_success,
user_feedback)
# bring in some common config from rattail_tempmon
from rattail_tempmon.emails import (tempmon_critical_high_temp,
tempmon_high_temp,
tempmon_good_temp,
tempmon_low_temp,
tempmon_critical_low_temp,
tempmon_error,
tempmon_client_offline)
# common config from rattail-corepos
from rattail_corepos.emails import (rattail_import_corepos_api_updates,
rattail_import_corepos_db_updates)