File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
packages/models-library/src/models_library
services/web/server/src/simcore_service_webserver/users Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1515EVERYONE_GROUP_ID : Final [int ] = 1
1616
1717GroupID : TypeAlias = PositiveInt
18- PrimaryGroupID : TypeAlias = Annotated [GroupID , Field (gt = 2 )]
19- StandardGroupID : TypeAlias = Annotated [GroupID , Field (gt = 2 )]
18+ PrimaryGroupID : TypeAlias = Annotated [GroupID , Field (gt = EVERYONE_GROUP_ID )]
19+ StandardGroupID : TypeAlias = Annotated [GroupID , Field (gt = EVERYONE_GROUP_ID )]
2020
2121__all__ : tuple [str , ...] = ("GroupType" ,)
2222
Original file line number Diff line number Diff line change @@ -381,9 +381,7 @@ async def search_merged_pre_and_registered_users(
381381 users_pre_registration_details .c .state ,
382382 users_pre_registration_details .c .postal_code ,
383383 users_pre_registration_details .c .country ,
384- users_pre_registration_details .c .user_id .label (
385- "pre_reg_user_id"
386- ), # "copy" of user_id from pre-registration
384+ users_pre_registration_details .c .user_id .label ("pre_reg_user_id" ),
387385 users_pre_registration_details .c .extras ,
388386 users_pre_registration_details .c .account_request_status ,
389387 users_pre_registration_details .c .account_request_reviewed_by ,
You can’t perform that action at this time.
0 commit comments