Add API documentation

This commit is contained in:
Benoit Marty 2022-04-14 14:53:25 +02:00
parent 9b7e94ebab
commit fe0332957b
1 changed files with 3 additions and 0 deletions

View File

@ -75,11 +75,14 @@ interface UserService {
/**
* 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>)
/**
* 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>)
}