/
TimofeyNovv
/
To-do-List
Обзор
Документация
Войти
/
TimofeyNovv
/
To-do-List
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
security
src/main/java/com/example/ToDoList/service/UserService.java
16 строк
476 B
TimofeyNov
add /me endpoint for user
30 окт 2025, 12:31
30 окт 2025, 12:31
3e95f90
Код
Авторство
О чём код?
package com.example.ToDoList.service; import com.example.ToDoList.dto.user.UserResponseDto; import com.example.ToDoList.dto.user.UserSmallInfoDto; import com.example.ToDoList.model.entity.user.UserEntity; public interface UserService { UserResponseDto findById(Integer id); UserResponseDto findByEmail(String email); void deleteUserById(Integer id); void deleteUserByEmail(String email); UserSmallInfoDto getCurrentUserInfo(UserEntity currentUser); }