[server] Add person_v2 entity type

This commit is contained in:
Neeraj Gupta
2024-07-25 11:51:29 +05:30
parent 336aa7ac5f
commit 584db778ee

View File

@@ -9,6 +9,8 @@ type EntityType string
const (
Location EntityType = "location"
Person EntityType = "person"
// PersonV2 is a new version of Person entity, where the data is gzipped before encryption
PersonV2 EntityType = "person_v2"
)
type EntityKey struct {