Add API documentation

This commit is contained in:
Benoit Marty 2022-04-14 14:53:25 +02:00
parent 9b7e94ebab
commit fe0332957b

View file

@ -75,11 +75,14 @@ interface UserService {
/** /**
* Ignore users * Ignore users
* Note: once done, for the change to take effect, you have to request an initial sync.
* This may be improved in the future
*/ */
suspend fun ignoreUserIds(userIds: List<String>) suspend fun ignoreUserIds(userIds: List<String>)
/** /**
* Un-ignore some users * Un-ignore some users
* Note: once done, for the change to take effect, you have to request an initial sync.
*/ */
suspend fun unIgnoreUserIds(userIds: List<String>) suspend fun unIgnoreUserIds(userIds: List<String>)
} }