diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d58e466b99296765d1b74fb19eb350e5e67b15ea..906f44538761575dc686cb0569f9b2fb61145e94 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog`_, and this project adheres to `Semantic Versioning`_. +`4.0.0.dev1`_ - 2024-06-13 +-------------------------- + +Added +~~~~~ + +* Support for entering absences for students in the new coursebook interface. + `4.0.0.dev0`_ - 2024-04-23 -------------------------- diff --git a/aleksis/apps/alsijil/schema/documentation.py b/aleksis/apps/alsijil/schema/documentation.py index 4a0055064abd0a9cc1bb79850390da318a808b4a..63aecfdfc0e5115250e2e4d59c34d41c8375530e 100644 --- a/aleksis/apps/alsijil/schema/documentation.py +++ b/aleksis/apps/alsijil/schema/documentation.py @@ -71,7 +71,7 @@ class DocumentationType(PermissionsTypeMixin, DjangoFilterMixin, DjangoObjectTyp @staticmethod def resolve_participations(root: Documentation, info, **kwargs): if not info.context.user.has_perm( - "alsijil.view_participation_status_for_documentation", root + "alsijil.view_participation_status_for_documentation_rule", root ): return [] diff --git a/pyproject.toml b/pyproject.toml index 03a0772bee8aa34ffc35dc565a1762b87745abbb..f8457ce5c4feec15c21f780d08ab960c05418d4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "AlekSIS-App-Alsijil" -version = "4.0.0.dev1" +version = "4.0.0.dev3" packages = [ { include = "aleksis" } ]