Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Relative = typesrest.NewEndpoint("") ByJwtId = typesrest.NewEndpoint( "", typesrest.JwtId, ) ValidByJwtId = typesrest.NewEndpoint( "valid", typesrest.JwtId, ) )
Auth service refresh tokens REST endpoints
View Source
var Interceptions = map[string]map[rest.Method]grpc.Method{ Relative.String(): { rest.POST: auth.RefreshToken, rest.GET: auth.GetRefreshTokensInformation, rest.DELETE: auth.RevokeRefreshTokens, }, ByJwtId.String(): { rest.GET: auth.GetRefreshTokenInformation, rest.DELETE: auth.RevokeRefreshToken, }, ValidByJwtId.String(): { rest.GET: auth.IsRefreshTokenValid, }, }
Interceptions is the map of the REST API endpoints to the auth service refresh tokens gRPC methods
View Source
var Map = rest.NewMap( &Interceptions, nil, )
Map is the map of the REST API endpoints of the auth service refresh tokens
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.