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:
parent
b6dc6eb36c
commit
028d9aab73
5 changed files with 129 additions and 52 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue