UserService

interface UserService

Inheritors

Functions

Link copied to clipboard
abstract fun createNewUser(userName: String, fcmToken: String): TokenDto
Link copied to clipboard
abstract fun findUserById(userId: Long): User?
Link copied to clipboard
abstract fun findUserByToken(token: String): User
Link copied to clipboard
abstract fun findUserNameById(userId: Long): String?
Link copied to clipboard
abstract fun getUserSettings(token: String): UserDto
Link copied to clipboard
abstract fun updateUserSettings(token: String, settings: UpdateUserDto): UserDto