From 893de4f5c0e852fac9a73e0c0243bc038af75f17 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 25 Feb 2020 21:35:57 +0100 Subject: identity: bring back the login to hold that info from bridges (purely informational) --- commands/user.go | 3 +++ commands/user_create.go | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'commands') diff --git a/commands/user.go b/commands/user.go index 5cf40cf0..2888e131 100644 --- a/commands/user.go +++ b/commands/user.go @@ -41,6 +41,8 @@ func runUser(cmd *cobra.Command, args []string) error { switch userFieldsQuery { case "email": fmt.Printf("%s\n", id.Email()) + case "login": + fmt.Printf("%s\n", id.Login()) case "humanId": fmt.Printf("%s\n", id.Id().Human()) case "id": @@ -67,6 +69,7 @@ func runUser(cmd *cobra.Command, args []string) error { fmt.Printf("Id: %s\n", id.Id()) fmt.Printf("Name: %s\n", id.Name()) fmt.Printf("Email: %s\n", id.Email()) + fmt.Printf("Login: %s\n", id.Login()) fmt.Printf("Last modification: %s (lamport %d)\n", id.LastModification().Time().Format("Mon Jan 2 15:04:05 2006 +0200"), id.LastModificationLamport()) diff --git a/commands/user_create.go b/commands/user_create.go index 95e09050..df4aa8e9 100644 --- a/commands/user_create.go +++ b/commands/user_create.go @@ -43,7 +43,7 @@ func runUserCreate(cmd *cobra.Command, args []string) error { return err } - id, err := backend.NewIdentityRaw(name, email, avatarURL, nil) + id, err := backend.NewIdentityRaw(name, email, "", avatarURL, nil) if err != nil { return err } -- cgit