Browse Source

Upgrade filesystem_session plugin to fit with new plugin handdling

Yann Weber 8 years ago
parent
commit
4ad4db09cb
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      plugins/filesystem_session/__init__.py

+ 4
- 1
plugins/filesystem_session/__init__.py View File

@@ -1,5 +1,8 @@
1 1
 from lodel.settings.validator import SettingValidator
2 2
 
3
+__plugin_name__ = 'filesystem_session'
4
+__version = [0,0,1]
5
+__type__ = 'session_handler'
3 6
 __loader__ = 'main.py'
4 7
 __confspec__ = "confspec.py"
5 8
 __author__ = "Lodel2 dev team"
@@ -10,4 +13,4 @@ __fullname__ = "FileSystem Session Store Plugin"
10 13
 #
11 14
 # @return True if checks are OK else returns a string with a reason
12 15
 def _activate():
13
-    return True
16
+    return True

Loading…
Cancel
Save