Temporary disable the current_app check due to a bug in django CMS 3.0.3
This commit is contained in:
parent
cf0ef08896
commit
6b74757eef
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@ from .models import BLOG_CURRENT_POST_IDENTIFIER
|
|||
class BlogToolbar(CMSToolbar):
|
||||
|
||||
def populate(self):
|
||||
if not (self.is_current_app and self.request.user.has_perm('djangocms_blog.add_post')):
|
||||
# TODO: Readd if not self.is_current_app condition when CMS 3.0.4 is released
|
||||
if not self.request.user.has_perm('djangocms_blog.add_post'):
|
||||
return # pragma: no cover
|
||||
admin_menu = self.toolbar.get_or_create_menu("djangocms_blog", _('Blog'))
|
||||
url = reverse('admin:djangocms_blog_post_changelist')
|
||||
|
|
Loading…
Reference in a new issue