add a UserManager to simplify user creation, improve response validation in ServiceBase, allow Section component to support parameter changes
This commit is contained in:
10
Oqtane.Server/Infrastructure/Interfaces/IUserManager.cs
Normal file
10
Oqtane.Server/Infrastructure/Interfaces/IUserManager.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using System.Threading.Tasks;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Infrastructure
|
||||
{
|
||||
public interface IUserManager
|
||||
{
|
||||
Task<User> AddUser(User user);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user