felicity-lims/felicity/apps/notification/conf.py
2023-04-07 17:52:19 +02:00

22 lines
364 B
Python

"""Analysis Configs
This file is part of Felicity LIMS Software
"""
class ActionObjects:
SAMPLE = "SAMPLE"
ANALYSIS_RESULT = "ANALYSIS_RESULT"
WORKSHEET = "WORKSHEET"
REPORT = "REPORT"
action_objects = ActionObjects()
class Channels:
ACTIVITIES = "activities"
NOTIFICATIONS = "notifications"
JOBS = "jobs"
channels = Channels()