summary refs log tree commit diff
path: root/tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-06-22Prevent M_USER_IN_USE from being raised by registration methods until after ↵Andrew Morgan1-8/+0
email has been verified (#48) * Just ignore the `username` parameter on registration as it's not used by DINUM * Have `/register/available` always return `true`
2020-06-19Add a bulk user info endpoint and deprecate the old one (#46)Andrew Morgan6-38/+330
The current `/user/<user_id>/info` API was useful in that it could be used by any user to lookup whether another user was deactivate or expired. However, it was impractical as it only allowed for a single lookup at once. Clients trying to use this API were met with speed issues as they tried to query this information for all users in a room. This PR adds an equivalent CS