mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-15 01:54:20 +01:00
31 lines
699 B
C#
31 lines
699 B
C#
using DotBased;
|
|
using DotBased.ASP.Auth.Domains;
|
|
using DotBased.Logging;
|
|
using SharpRSS.Data.Domains.Auth;
|
|
|
|
namespace SharpRSS.Business.Services;
|
|
|
|
public class AuthService
|
|
{
|
|
public AuthService()
|
|
{
|
|
_logger = LogService.RegisterLogger(typeof(AuthService));
|
|
}
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
public async Task<Result> LoginUserAsync(LoginModel loginModel)
|
|
{
|
|
return Result.Failed("NotImplemented");
|
|
}
|
|
|
|
public async Task<Result> LogoutUserAsync(string id)
|
|
{
|
|
return Result.Failed("NotImplemented");
|
|
}
|
|
|
|
public async Task<Result> ValidateAuthenticationStateAsync(string id)
|
|
{
|
|
return Result.Failed("NotImplemented");
|
|
}
|
|
} |