system-praktyk-api/src/AspNet.Security.OAuth.MyGut/MyGutAuthenticationHandler.cs
2020-08-29 17:25:48 +02:00

19 lines
608 B
C#

using System.Text.Encodings.Web;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authentication.OAuth;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
namespace AspNet.Security.OAuth.MyGut
{
public class MyGutAuthenticationHandler : OAuthHandler<MyGutAuthenticationOptions>
{
public MyGutAuthenticationHandler(
IOptionsMonitor<MyGutAuthenticationOptions> options,
ILoggerFactory logger,
UrlEncoder encoder,
ISystemClock clock) : base(options, logger, encoder, clock)
{
}
}
}