diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f6e4fb6c8..d9181ecc8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,12 @@ are used for versioning (schema follows below): 0.3.4 to 0.4). - All backwards incompatible changes are mentioned in this document. +0.19.5 +------ +2022-11-20 + +- Enable accidentally forgotten login-required permission on the Dashboard view. + 0.19.4 ------ 2022-08-08 diff --git a/setup.py b/setup.py index e1737ba20..2cc230f02 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.version import LooseVersion from setuptools import setup, find_packages -version = "0.19.4" +version = "0.19.5" # *************************************************************************** # ************************** Django version ********************************* diff --git a/src/fobi/__init__.py b/src/fobi/__init__.py index 24650a531..3d2a2fc34 100644 --- a/src/fobi/__init__.py +++ b/src/fobi/__init__.py @@ -1,5 +1,5 @@ __title__ = "django-fobi" -__version__ = "0.19.4" +__version__ = "0.19.5" __author__ = "Artur Barseghyan " __copyright__ = "2014-2022 Artur Barseghyan" __license__ = "GPL 2.0/LGPL 2.1" diff --git a/src/fobi/views/class_based.py b/src/fobi/views/class_based.py index abd689fa8..05d2c1a49 100644 --- a/src/fobi/views/class_based.py +++ b/src/fobi/views/class_based.py @@ -239,7 +239,7 @@ def run_after_plugin_entry_delete(self, request, form_entry_id): # ***************************************************************************** -class DashboardView(ListView): +class DashboardView(PermissionMixin, ListView): """Dashboard view.""" template_name = None