This commit is contained in:
2026-03-07 07:50:24 +07:00
parent 795edad998
commit 83868cc778
7 changed files with 222 additions and 7 deletions
+2 -3
View File
@@ -29,10 +29,9 @@ func mapProtoTeamsToTeam(team *proto.Team) *models.Team {
}
}
func mapActionToProtoAction(action *models.Action) *proto.Action {
func mapPlaceToProtoAction(place *story_service.Place) *proto.Action {
return &proto.Action{
Id: action.ID,
Place: action.Place,
Place: place.Code,
}
}