This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
themis.config/themis/config/interfaces.py

14 lines
389 B
Python

from zope.interface import Interface
from zope import schema
from zope.i18nmessageid import MessageFactory
_ = MessageFactory(u'themis.config')
class IThemisSettings(Interface):
'''Themis Settings'''
mail_category_mapping = schema.Text(
title=_(u'Mail Category Mapping'), required=False)
documents_path = schema.TextLine(title=_(u'Documents Path'), required=False)