Fixing model mismatch
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 46s
Deploy Promiscuity Character API / deploy (push) Successful in 44s
Deploy Promiscuity Inventory API / deploy (push) Successful in 47s
Deploy Promiscuity Locations API / deploy (push) Successful in 59s
k8s smoke test / test (push) Successful in 8s

This commit is contained in:
Zeeshaun 2026-03-19 17:07:24 -05:00
parent 0fc023b75c
commit 69ff204c5d

View File

@ -454,7 +454,15 @@ public class LocationStore
public string OwnerUserId { get; set; } = string.Empty;
public Coord Coord { get; set; } = new();
public CharacterCoord Coord { get; set; } = new();
}
[MongoDB.Bson.Serialization.Attributes.BsonIgnoreExtraElements]
private class CharacterCoord
{
public int X { get; set; }
public int Y { get; set; }
}
}