Commit da03132a authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Update UserRepository.kt

parent 02f7c65b
......@@ -6,6 +6,8 @@ import chat.rocket.core.models.User
interface UserRepository {
fun getAll(): Flowable<List<User>>
fun getCurrent(): Flowable<Optional<User>>
fun getByUsername(username: String): Flowable<Optional<User>>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment