allow entry of name during installation

This commit is contained in:
sbwalker
2025-01-17 11:14:35 -05:00
parent 4bc26f13c1
commit 677f68b08d
5 changed files with 26 additions and 12 deletions

View File

@ -39,8 +39,9 @@ namespace Oqtane.Services
/// Registers a new <see cref="User"/>
/// </summary>
/// <param name="email">Email of the user to be registered</param>
/// <param name="name">Name of the user to be registered</param>
/// <returns></returns>
Task RegisterAsync(string email);
Task RegisterAsync(string email, string name);
}
}