Skip to content

Commit 882f7d3

Browse files
committed
added argument
1 parent 1eda11f commit 882f7d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/web/server/src/simcore_service_webserver/projects/_projects_service.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
from models_library.utils.fastapi_encoders import jsonable_encoder
6262
from models_library.wallets import ZERO_CREDITS, WalletID, WalletInfo
6363
from models_library.workspaces import UserWorkspaceWithAccessRights
64-
from pydantic import ByteSize, TypeAdapter
64+
from pydantic import ByteSize, PositiveInt, TypeAdapter
6565
from servicelib.aiohttp.application_keys import APP_FIRE_AND_FORGET_TASKS_KEY
6666
from servicelib.common_headers import (
6767
UNDEFINED_DEFAULT_SIMCORE_USER_AGENT_VALUE,
@@ -1394,6 +1394,7 @@ async def try_open_project_for_user(
13941394
client_session_id: str,
13951395
app: web.Application,
13961396
max_number_of_opened_projects_per_user: int | None,
1397+
max_number_of_users_per_project: PositiveInt | None,
13971398
) -> bool:
13981399
"""
13991400
Raises:

0 commit comments

Comments
 (0)