47 lines
737 B
C#
47 lines
737 B
C#
using OwnChar.Server.Api;
|
|
|
|
namespace OwnChar.Server.Api.Endpoint.Implementations;
|
|
|
|
internal class UsersApi(IServer server) : IApiEndpoint
|
|
{
|
|
public void Initialize(IApiBuilder builder)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
private IResult GetUsers()
|
|
{
|
|
|
|
}
|
|
|
|
private IResult GetUser(long userId)
|
|
{
|
|
|
|
}
|
|
|
|
private IResult GetUserProfile(long userId)
|
|
{
|
|
|
|
}
|
|
|
|
private IResult CreateUser(string username, string password)
|
|
{
|
|
|
|
}
|
|
|
|
private IResult DeleteUser(long userId)
|
|
{
|
|
|
|
}
|
|
|
|
private IResult UpdateUserPassword(long userId, string username, string password)
|
|
{
|
|
|
|
}
|
|
|
|
private IResult UpdateUserProfile(long profileId, string displayName)
|
|
{
|
|
|
|
}
|
|
}
|