mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-26 06:27:19 +01:00
Cleanup PosixSystemIdentityFactory
This commit is contained in:
@@ -8,19 +8,13 @@ namespace Tgstation.Server.Host.Security
|
||||
/// <summary>
|
||||
/// <see cref="ISystemIdentityFactory"/> for posix systems
|
||||
/// </summary>
|
||||
/// <remarks>Blocked by https://github.com/dotnet/corefx/issues/3187</remarks>
|
||||
/// <remarks>TODO: Blocked by https://github.com/dotnet/corefx/issues/3187</remarks>
|
||||
sealed class PosixSystemIdentityFactory : ISystemIdentityFactory
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public Task<ISystemIdentity> CreateSystemIdentity(User user, CancellationToken cancellationToken)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public Task<ISystemIdentity> CreateSystemIdentity(User user, CancellationToken cancellationToken) => throw new NotImplementedException();
|
||||
|
||||
/// <inheritdoc />
|
||||
public Task<ISystemIdentity> CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public Task<ISystemIdentity> CreateSystemIdentity(string username, string password, CancellationToken cancellationToken) => throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user