Updating initial Location crud endpoints to be global & restricted to SUPER role

This commit is contained in:
2026-01-20 17:13:12 -06:00
parent eb34e6692f
commit cdeea60e52
5 changed files with 7 additions and 35 deletions
@@ -9,8 +9,6 @@ public class Location
[BsonRepresentation(BsonType.ObjectId)]
public string? Id { get; set; }
public string OwnerUserId { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public DateTime CreatedUtc { get; set; } = DateTime.UtcNow;