diff --git a/api/src/api/v1/form_phases.py b/api/src/api/v1/form_phases.py index 82f8837..0ca725f 100644 --- a/api/src/api/v1/form_phases.py +++ b/api/src/api/v1/form_phases.py @@ -63,7 +63,7 @@ async def get_form_phases( ) if phases: form = await bf_service.get(user=current_user, budget_form_id=form_id) - org_unit = await org_unit_service.get(user=current_user, org_unit_id=form.org_unit_id) + org_unit = await org_unit_service.get(org_unit_id=form.org_unit_id) result = [FormPhaseResponse.model_validate(p) for p in phases] if org_unit.utc_offset: tz = timezone_from_offset(org_unit.utc_offset) diff --git a/api/src/services/org_unit_service.py b/api/src/services/org_unit_service.py index 1313192..cc7b498 100644 --- a/api/src/services/org_unit_service.py +++ b/api/src/services/org_unit_service.py @@ -40,10 +40,10 @@ class OrgUnitService: async def get( self, org_unit_id: int, - user: AppUser, + user: AppUser | None = None, load_users: bool = False, ) -> OrgUnit | None: - if user.role_id != UserRoleEnum.ADMIN: + if user and user.role_id != UserRoleEnum.ADMIN: return None return await self.org_repo.get( org_unit_id=org_unit_id,