mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 20:24:27 -04:00
* Implemented the ability to disable authentication on a server instance. Admins will require authentication, but non-admin accounts can be setup without any password requirements. * WIP for new login page. * Reworked code to handle disabled auth better. First time user flow is moved into the user login component. * Removed debug code * Removed home component, shakeout testing is complete. * remove a file accidently committed * Fixed a code smell from last PR * Code smells
13 lines
287 B
C#
13 lines
287 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using API.Entities;
|
|
using API.Errors;
|
|
|
|
namespace API.Interfaces.Services
|
|
{
|
|
public interface IAccountService
|
|
{
|
|
Task<IEnumerable<ApiException>> ChangeUserPassword(AppUser user, string newPassword);
|
|
}
|
|
}
|