This repository has been archived on 2022-08-17. You can view files and clone it, but cannot push or open issues or pull requests.
dex/server/internal/types.proto

20 lines
489 B
Protocol Buffer

syntax = "proto3";
// Package internal holds protobuf types used by the server.
package internal;
option go_package = "github.com/dexidp/dex/server/internal";
// RefreshToken is a message that holds refresh token data used by dex.
message RefreshToken {
string refresh_id = 1;
string token = 2;
}
// IDTokenSubject represents both the userID and connID which is returned
// as the "sub" claim in the ID Token.
message IDTokenSubject {
string user_id = 1;
string conn_id = 2;
}