tgstation-server 5.12.7
The /tg/station 13 server suite
Loading...
Searching...
No Matches
ITokenFactory.cs
Go to the documentation of this file.
1using System.Threading;
2using System.Threading.Tasks;
3
4using Microsoft.IdentityModel.Tokens;
5
7
9{
13 public interface ITokenFactory
14 {
18 TokenValidationParameters ValidationParameters { get; }
19
27 Task<TokenResponse> CreateToken(Models.User user, bool oAuth, CancellationToken cancellationToken);
28 }
29}
Task< TokenResponse > CreateToken(Models.User user, bool oAuth, CancellationToken cancellationToken)
Create a TokenResponse for a given user .
TokenValidationParameters ValidationParameters
The TokenValidationParameters for the ITokenFactory.