4288e1ce64
this lets the demo have random extra Store records and the importer will just ignore them
24 lines
864 B
Python
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)
|