mirror of
https://github.com/yweber/lodel2.git
synced 2025-11-13 01:19:16 +01:00
Theorically all of those imports were tested by unit testing, but we've got no inssurance about that. And even if unit tests had check for syntax errors, all pieces of code were not tested. We cannot be sure that an import was missed or forgotten...
18 lines
535 B
Python
18 lines
535 B
Python
from lodel.context import LodelContext
|
|
LodelContext.expose_modules(globals(), {
|
|
'lodel.settings.validator': ['SettingValidator']})
|
|
|
|
__plugin_name__ = 'filesystem_session'
|
|
__version__ = [0,0,1]
|
|
__plugin_type__ = 'session_handler'
|
|
__loader__ = 'main.py'
|
|
__confspec__ = "confspec.py"
|
|
__author__ = "Lodel2 dev team"
|
|
__fullname__ = "FileSystem Session Store Plugin"
|
|
|
|
|
|
## @brief This methods allow plugin writter to write some checks
|
|
#
|
|
# @return True if checks are OK else returns a string with a reason
|
|
def _activate():
|
|
return True
|