21 lines
490 B
Python
21 lines
490 B
Python
# Version: 1.7.0
|
|
|
|
# Constants for the notification system
|
|
NOTIFICATION_COOLDOWN = 600 # 10 minutes until a notification gets real
|
|
NOTIFICATION_MAX_AGE_DAYS = 3 # 3 days until a notification gets deleted
|
|
|
|
# Placeholder for the email credentials filled by startup logic
|
|
email_credentials = dict()
|
|
|
|
# Holding var for global message notification type info
|
|
message_types = dict()
|
|
|
|
# Constants for the email display
|
|
|
|
shipcall_types = {
|
|
1: "Arrival",
|
|
2: "Departure",
|
|
3: "Shifting"
|
|
}
|
|
|