summary refs log tree commit diff
path: root/scripts-dev/check_auth.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-11-01Apparently this is pythonDavid Baker1-1/+1
2017-11-01Log login requestsDavid Baker1-0/+10
Carefully though, to avoid logging passwords
2017-11-01automatically set default displayname on registerMatthew Hodgson1-1/+8
to avoid leaking ugly MXIDs and cluttering up the timeline with displayname changes as well as membership joins for autojoin rooms (e.g. the status autojoin rooms), automatically set the displayname to match the localpart of the mxid upon registration.
2017-11-01Break dependency of auth_handler on device_handlerRichard van der Hoff3-13/+6
I'm going to need to make the device_handler depend on the auth_handler, so I need to break this dependency to avoid a cycle. It turns out that the auth_handler was only using the device_handler in one place which was an edge case which we can more elegantly handle by throwing an error rather than fixing it up.
2017-11-01Fix tests for refresh_token removalRichard van der Hoff1-3/+3
2017-11-01Leave `is_public` as required argument of update_room_group_associationLuke Barnard1-1/+1
2017-11-01Update docs for updating room group associationLuke Barnard2-2/+2
2017-10-31Remove the last vestiges of refresh_tokensRichard van der Hoff5-60/+14
2017-10-31Flake8Luke Barnard2-5/+9
2017-10-31Modify group room association API to allow modification of is_publicLuke Ba