Add bulk actions for posts: publish, unpublish, allow/disallow comments, and enable/disable liveblog (if installed)

This commit is contained in:
Fabian Braun 2017-03-24 21:27:37 +01:00
commit 9d21af9297
8 changed files with 75 additions and 0 deletions

View file

@ -9,6 +9,7 @@ from tempfile import mkdtemp
def gettext(s): return s
HELPER_SETTINGS = dict(
ROOT_URLCONF='tests.test_utils.urls',
INSTALLED_APPS=[
@ -139,5 +140,6 @@ def setup():
from djangocms_helper import runner
runner.setup('djangocms_blog', sys.modules[__name__], use_cms=True)
if __name__ == '__main__':
run()