Projekt

Obecné

Profil

« Předchozí | Další » 

Revize c349bab3

Přidáno uživatelem Lukáš Vlček před asi 2 roky(ů)

Backend - JWT Authentication done

Zobrazit rozdíly:

Backend/Core/Services/UserService/IUserService.cs
12 12
    {
13 13
        public User? CreateUser(string username, string name, string surname, string password, ERole role);
14 14
        public User? GetUserByUsername(string username);
15
        public User? GetUserByGuid(Guid id);
15
        public User? GetUserById(Guid id);
16 16
        public User UpdateUser(User user, string? username = null, string? name = null, string? surname = null, ERole? role = null);
17 17
        public User ChangePassword(User user, string newPassword);
18 18
        public User? CheckUsernamePassword(string username, string password);

Také k dispozici: Unified diff