mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-09 23:44:20 +01:00
30 lines
666 B
C#
30 lines
666 B
C#
using DotBased;
|
|
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");
|
|
}
|
|
} |