make go vet happy

This commit is contained in:
A.Unger
2020-07-28 16:58:17 +02:00
parent 0d03cee6f2
commit b6ab351c0b
+8 -1
View File
@@ -318,7 +318,14 @@ func (s Service) CreateAccount(c context.Context, in *proto.CreateAccountRequest
acc.PasswordProfile.Password = ""
}
*out = *acc
{
out.Id = acc.Id
out.Mail = acc.Mail
out.PreferredName = acc.PreferredName
out.AccountEnabled = acc.AccountEnabled
out.DisplayName = acc.DisplayName
out.OnPremisesSamAccountName = acc.OnPremisesSamAccountName
}
return
}