add new user fields to grpc and list command (#2202)

Updates #2166

Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
This commit is contained in:
Kristoffer Dalby 2024-10-18 08:20:03 -06:00 committed by GitHub
parent b6dc6eb36c
commit 028d9aab73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 129 additions and 52 deletions

View file

@ -5,9 +5,14 @@ option go_package = "github.com/juanfont/headscale/gen/go/v1";
import "google/protobuf/timestamp.proto";
message User {
string id = 1;
string name = 2;
google.protobuf.Timestamp created_at = 3;
string id = 1;
string name = 2;
google.protobuf.Timestamp created_at = 3;
string display_name = 4;
string email = 5;
string provider_id = 6;
string provider = 7;
string profile_pic_url = 8;
}
message GetUserRequest {