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_create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands/user_create.go') 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