Skip to content

Commit

Permalink
Prepare 0.19.5. Enable accidentally forgotten permission in the class…
Browse files Browse the repository at this point in the history
…-based Dashboard view
  • Loading branch information
barseghyanartur committed Nov 20, 2022
1 parent 8208893 commit 6ef902c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 *********************************
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "django-fobi"
__version__ = "0.19.4"
__version__ = "0.19.5"
__author__ = "Artur Barseghyan <[email protected]>"
__copyright__ = "2014-2022 Artur Barseghyan"
__license__ = "GPL 2.0/LGPL 2.1"
Expand Down
2 changes: 1 addition & 1 deletion src/fobi/views/class_based.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6ef902c

Please sign in to comment.