This commit is contained in:
2026-03-07 21:25:32 +07:00
parent 2e8afd3948
commit 05cab1df89
5 changed files with 287 additions and 159 deletions
+5
View File
@@ -147,6 +147,11 @@ func (s *Services) GetTeam(ctx context.Context, req *proto.GetTeamReq) (*proto.G
for _, application := range place.Applications {
newAction.Applications = append(newAction.Applications, mapStoryApplicationToProtoApplication(application))
}
newAction.Hidden = place.Hidden
newAction.Doors = make([]*proto.Door, 0, len(place.Doors))
for _, door := range place.Doors {
newAction.Doors = append(newAction.Doors, mapStoryDoorToProtoDoor(door))
}
res = append(res, newAction)
}
return &proto.GetTeamRsp{