Bruno Windels
Bruno Windels
My patch to make it work: ```diff 20c20,21 < r = requests.get(url=url, auth=(credentials['user_name'], credentials['token']), headers={'Content-type': 'application/json'}) --- > url = url + "&access_token=" + credentials['token'] > r = requests.get(url=url, headers={'Content-type':...
This will stop working at some point though: https://developer.github.com/changes/2020-02-10-deprecating-auth-through-query-param
The CS API should not allow to send a relation targetting a `m.annotation` event, as discussed at https://github.com/matrix-org/matrix-doc/pull/2675#discussion_r757010873
Overall, this looks like a nice API to work with as a client developer. Have left some comments for the specific use cases mentioned though, which each seem to have...
> If that is not desirable, I can move the config handling changes in another PR and merge the docker improvements first Thanks, that would be good.
Actually, this is not what we need for calls, as it needs to observe state changes in all rooms to be able to ring. We wouldn't want to have these...
So this can be detected by looking at the sync status on Sync which should be Error, and the error property should have a HomeServerError where the errcode property would...
how to tell logoutviewmodel that the alternative message should be shown? parameter in the url? e.g. /session//logout/expired
Actually, we should probably immediately start to remove the local cache when moving to the screen (as allowing users to keep their cache is not something we want to encourage...