Refactor runtime bootstrap and ship control flows
This commit is contained in:
7
apps/backend/Auth/Simulation/DevPasswordResetDelivery.cs
Normal file
7
apps/backend/Auth/Simulation/DevPasswordResetDelivery.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace SpaceGame.Api.Auth.Simulation;
|
||||
|
||||
public sealed class DevPasswordResetDelivery : IPasswordResetDelivery
|
||||
{
|
||||
public Task<ForgotPasswordResponse> DeliverAsync(UserAccount user, string resetToken, CancellationToken cancellationToken) =>
|
||||
Task.FromResult(new ForgotPasswordResponse(true, resetToken));
|
||||
}
|
||||
Reference in New Issue
Block a user