18 lines
426 B
Protocol Buffer
18 lines
426 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
// Package internal holds protobuf types used by the server
|
|
package 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;
|
|
}
|