15 lines
519 B
C#
15 lines
519 B
C#
using RecNet.Application.Common.Interfaces;
|
|
using RecNet.Application.Common.PlatformAuth;
|
|
using RecNet.Domain.Common;
|
|
|
|
namespace RecNet.Infrastructure.Services.Meta;
|
|
|
|
public class MetaAuthValidator : IPlatformAuthValidator
|
|
{
|
|
public PlatformType PlatformType
|
|
=> PlatformType.Meta;
|
|
|
|
public Task<PlatformAuthResult> ValidateAsync(string platformAuthentication, string platformId,
|
|
CancellationToken ct = default)
|
|
=> Task.FromResult(PlatformAuthResult.Success(null)); // TODO: Implement
|
|
} |