We fixed the error code for ocm space sharing

This commit is contained in:
Roman Perekhod
2024-09-27 17:50:58 +02:00
parent 89761752db
commit c6bbdaa23f
2 changed files with 7 additions and 1 deletions
@@ -329,7 +329,7 @@ func (s DriveItemPermissionsService) SpaceRootInvite(ctx context.Context, driveI
objectID := invite.GetRecipients()[0].GetObjectId()
_, err := s.identityCache.GetAcceptedUser(ctx, objectID)
if err == nil {
return libregraph.Permission{}, errorcode.New(errorcode.NotAllowed, "federated user can not become a space member")
return libregraph.Permission{}, errorcode.New(errorcode.InvalidRequest, "federated user can not become a space member")
}
}