uninstall baker-street-corporate-member-zone 0.0.10

This commit is contained in:
2018-03-21 14:20:47 +00:00
parent 25d8d58a08
commit aeb9428828
5 changed files with 0 additions and 39 deletions

View File

@@ -1,7 +0,0 @@
{
"installed-apps": [
"corporate_member_zone",
"corporate_member_accounts"
],
"package-name": "baker-street-corporate-member-zone"
}

View File

@@ -1,29 +0,0 @@
# -*- coding: utf-8 -*-
from aldryn_client import forms
class Form(forms.BaseForm):
def to_settings(self, data, settings):
# settings['INSTALLED_APPS'].extend(['ckeditor'])
settings['AUTHENTICATION_BACKENDS'] = ['baker_street_corporate_member_zone.backends.UserAuthenticationBackend']
try:
settings['CKEDITOR_CONFIGS']
except KeyError:
settings['CKEDITOR_CONFIGS'] = {}
settings['CKEDITOR_CONFIGS']['simple_ckeditor'] = {
'toolbar': 'Custom',
'format_tags': 'p;h2;h3',
'toolbar_Custom': [
['Format', ],
['Bold', ],
['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent'],
['Link', 'Unlink'],
['RemoveFormat', 'Source']
]
}
return settings