diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ae244dfab8471599aa967d839a83c2e9d2db764e..41432372fddb333b2f65e3c602542a7097624da7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -21,6 +21,10 @@ Fixed * Exam import failed sometimes when data provided through Untis were incomplete. * Importer now automatically fixes intersections of terms with previous terms. +Removed +~~~~~~~ +* Remove remaining data management menu entry. + `2.3.2`_ - 2022-09-01 --------------------- diff --git a/aleksis/apps/untis/menus.py b/aleksis/apps/untis/menus.py deleted file mode 100644 index 04a2db077f75018eec3395fa74f8a66d02d95628..0000000000000000000000000000000000000000 --- a/aleksis/apps/untis/menus.py +++ /dev/null @@ -1,16 +0,0 @@ -from django.utils.translation import gettext_lazy as _ - -MENUS = { - "DATA_MANAGEMENT_MENU": [ - { - "name": _("Link subjects to groups (for Untis MySQL import)"), - "url": "untis_groups_subjects", - "validators": [ - ( - "aleksis.core.util.predicates.permission_validator", - "untis.assign_subjects_to_groups_rule", - ), - ], - }, - ] -} diff --git a/docs/conf.py b/docs/conf.py index 28e42880a3d3ccf4d91945082360ea96fcde55f2..13185344985c302e3e02c6960487c2ee0a0d56c7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,9 +29,9 @@ copyright = "2018-2022 The AlekSIS team" author = "The AlekSIS Team" # The short X.Y version -version = "2.3" +version = "3.0" # The full version, including alpha/beta/rc tags -release = "2.3.3.dev0" +release = "3.0.dev0" # -- General configuration ---------------------------------------------------