Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/services/project_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ async def is_user_permitted_to_map(project_id: int, user_id: int, db: Database):
if project.private and not is_manager_permission:
# Check if user is in allowed user list
is_allowed_user = await ProjectService.is_user_in_the_allowed_list(
project.id, user_id
project.id, user_id, db
)
if is_allowed_user:
return True, "User allowed to map"
Expand Down