Add encrypt config

This commit is contained in:
David Todd 2019-05-27 01:54:27 -05:00
parent 32a952d53a
commit c450546d87
1 changed files with 7 additions and 0 deletions

View File

@ -34,3 +34,10 @@ DEFAULT_PAGINATION = 20
USE_FOLDER_AS_CATEGORY = True # Use directories in content to specify the category
DEFAULT_CATEGORY = 'none'
PLUGINS = ['encrypt_content']
ENCRYPT_CONTENT = {
'title_prefix': '[Encrypted]',
'summary': 'This content is encrypted and requires a password to unlock'
}