fix(shadcn): isolate Nexus CSS vars with --nx- prefix + admin password reset endpoint
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace Nexus.Api.DTOs;
|
||||
|
||||
public sealed record AdminResetPasswordRequest
|
||||
{
|
||||
/// <summary>The email of the user whose password should be reset.</summary>
|
||||
public required string Email { get; init; }
|
||||
|
||||
/// <summary>The new password to set.</summary>
|
||||
public required string NewPassword { get; init; }
|
||||
|
||||
/// <summary>Admin reset token from configuration (Admin:ResetToken).</summary>
|
||||
public required string AdminToken { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user