diff options
author | 2023-05-09 12:16:10 +0200 | |
---|---|---|
committer | 2023-05-09 11:16:10 +0100 | |
commit | 0e29f1f5bb68a48d9b837d7f4e0a16370734955b (patch) | |
tree | f08d203ec8ca8aeea728e5251b1dc3956524b4f4 /internal/api/model/field.go | |
parent | [chore/performance] Make sender multiplier configurable (#1750) (diff) | |
download | gotosocial-0e29f1f5bb68a48d9b837d7f4e0a16370734955b.tar.xz |
[feature] Enable federation in/out of profile PropertyValue fields (#1722)
Co-authored-by: kim <grufwub@gmail.com>
Co-authored-by: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>
Diffstat (limited to 'internal/api/model/field.go')
-rw-r--r-- | internal/api/model/field.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/model/field.go b/internal/api/model/field.go index 399fef20a..c3dc8d67a 100644 --- a/internal/api/model/field.go +++ b/internal/api/model/field.go @@ -29,5 +29,5 @@ type Field struct { Value string `json:"value"` // If this field has been verified, when did this occur? (ISO 8601 Datetime). // example: 2021-07-30T09:20:25+00:00 - VerifiedAt string `json:"verified_at,omitempty"` + VerifiedAt *string `json:"verified_at"` } |