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.
tabellio.config/tabellio/config/interfaces.py

18 lines
440 B
Python

from zope.interface import Interface
from zope import schema
from zope.i18nmessageid import MessageFactory
_ = MessageFactory(u'tabellio.config')
class ITabellioSettings(Interface):
'''Tabellio Settings'''
deputiesPath = schema.TextLine(
title=_('deputies_path', 'Deputies Path'),
required=False)
documentsPath = schema.TextLine(
title=_('documents_path', 'Documents Path'),
required=False)