mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-03-16 22:10:28 +00:00
Prepare 0.19.5. Enable accidentally forgotten permission in the class-based Dashboard view
This commit is contained in:
parent
8208893aed
commit
6ef902cc36
4 changed files with 9 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -3,7 +3,7 @@ import os
|
|||
from distutils.version import LooseVersion
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
version = "0.19.4"
|
||||
version = "0.19.5"
|
||||
|
||||
# ***************************************************************************
|
||||
# ************************** Django version *********************************
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
__title__ = "django-fobi"
|
||||
__version__ = "0.19.4"
|
||||
__version__ = "0.19.5"
|
||||
__author__ = "Artur Barseghyan <artur.barseghyan@gmail.com>"
|
||||
__copyright__ = "2014-2022 Artur Barseghyan"
|
||||
__license__ = "GPL 2.0/LGPL 2.1"
|
||||
|
|
|
|||
|
|
@ -239,7 +239,7 @@ class AbstractDeletePluginEntryView(PermissionMixin, DeleteView):
|
|||
# *****************************************************************************
|
||||
|
||||
|
||||
class DashboardView(ListView):
|
||||
class DashboardView(PermissionMixin, ListView):
|
||||
"""Dashboard view."""
|
||||
|
||||
template_name = None
|
||||
|
|
|
|||
Loading…
Reference in a new issue