summaryrefslogtreecommitdiff
path: root/src/services/reply_creation_callback.py
blob: 5d8f2bafe725a9ae31c191b0c9356a2da2a85e7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from config import user_config
from src.services.callback import Callbacks


class ReplyCreationCallbacks(Callbacks):
    """
    Check config for blacklists, moderation behavior and
    notification delivery.
    """
    def __init__(self, object):
        super().__init__(object)
        self._moderation_setting = user_config['Env']['reply_moderation']