aboutsummaryrefslogtreecommitdiffstats
path: root/identity/version.go
diff options
context:
space:
mode:
Diffstat (limited to 'identity/version.go')
-rw-r--r--identity/version.go12
1 files changed, 10 insertions, 2 deletions
diff --git a/identity/version.go b/identity/version.go
index 95530767..b5b8dae3 100644
--- a/identity/version.go
+++ b/identity/version.go
@@ -24,8 +24,8 @@ type Version struct {
unixTime int64
name string
- email string
- login string
+ email string // TODO: remove ? keep and use metadata for bridges ?
+ login string // TODO: remove
avatarURL string
// The set of keys valid at that time, from this version onward, until they get removed
@@ -60,6 +60,14 @@ type VersionJSON struct {
Metadata map[string]string `json:"metadata,omitempty"`
}
+type VersionMutator struct {
+ Name string
+ Email string
+ Login string
+ AvatarUrl string
+ Keys []Key
+}
+
func (v *Version) MarshalJSON() ([]byte, error) {
return json.Marshal(VersionJSON{
FormatVersion: formatVersion,