mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-03 03:12:50 +02:00
* fix redirect loop, remove user/session services, remove duplicate deleted_at fields * change loop * reuse err variable * wrap errors, use cookie timeout * wrap error, duplicate if
14 lines
280 B
Protocol Buffer
14 lines
280 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package user;
|
|
option go_package = "github.com/pomerium/pomerium/pkg/grpc/user";
|
|
|
|
import "google/protobuf/any.proto";
|
|
|
|
message User {
|
|
string version = 1;
|
|
string id = 2;
|
|
string name = 3;
|
|
string email = 4;
|
|
map<string, google.protobuf.Any> claims = 8;
|
|
}
|