♻️ No idea, but errors all gone
This commit is contained in:
@@ -22,7 +22,21 @@ public interface IMagicSpellService : IService<IMagicSpellService>
|
||||
/// Gets a magic spell by its token
|
||||
/// </summary>
|
||||
Task<MagicSpell?> GetMagicSpellAsync(string token);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets a magic spell by its ID.
|
||||
/// </summary>
|
||||
/// <param name="spellId">The ID of the magic spell.</param>
|
||||
/// <returns>The magic spell if found, otherwise null.</returns>
|
||||
Task<MagicSpell?> GetMagicSpellByIdAsync(Guid spellId);
|
||||
|
||||
/// <summary>
|
||||
/// Applies a password reset magic spell.
|
||||
/// </summary>
|
||||
/// <param name="spell">The magic spell object.</param>
|
||||
/// <param name="newPassword">The new password.</param>
|
||||
Task ApplyPasswordReset(MagicSpell spell, string newPassword);
|
||||
|
||||
/// <summary>
|
||||
/// Consumes a magic spell
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user