diff --git a/docker-compose.qa.template.yml b/docker-compose.qa.template.yml index c1f9a90..22b54df 100644 --- a/docker-compose.qa.template.yml +++ b/docker-compose.qa.template.yml @@ -10,7 +10,7 @@ services: APP_ENV: development APP_MAX_FILE_SIZE_MB: 10 CORS_ORIGINS: http://localhost:3000 - SERVICE_AUTH: http://localhost:3002 + SERVICE_AUTH: localhost:3002 SERVICE_BACKEND: backend:3003 SERVICE_CHECKIN: checkin:3004 SERVICE_STORE: store:3005 diff --git a/internal/auth/auth.service.go b/internal/auth/auth.service.go index b59c383..1f845fb 100644 --- a/internal/auth/auth.service.go +++ b/internal/auth/auth.service.go @@ -158,6 +158,7 @@ func (s *serviceImpl) VerifyGoogleLogin(_ context.Context, in *proto.VerifyGoogl return &proto.VerifyGoogleLoginResponse{ Credential: s.dtoToProtoCredential(credentials), + UserId: user.User.Id, }, nil }