summary refs log tree commit diff
path: root/tests/handlers/test_auth.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix email push in pusher workerErik Johnston2017-02-021-7/+5
| | | | | | This was broken when device list updates were implemented, as Mailer could no longer instantiate an AuthHandler due to a dependency on federation sending.
* Stop putting a time caveat on access tokensRichard van der Hoff2016-11-291-3/+3
| | | | | | | | The 'time' caveat on the access tokens was something of a lie, since we weren't enforcing it; more pertinently its presence stops us ever adding useful time caveats. Let's move in the right direction by not lying in our caveats.
* PEP8Richard van der Hoff2016-08-081-0/+1
|
* Fix login with m.login.tokenRichard van der Hoff2016-08-081-4/+49
| | | | | login with token (as used by CAS auth) was broken by 067596d, such that it always returned a 401.
* Fix flake8 warnings for testsMark Haines2016-02-191-1/+0
|
* copyrightsMatthew Hodgson2016-01-071-1/+1
|
* Move token generation to auth handlerDaniel Wagner-Hall2015-08-201-0/+70
I prefer the auth handler to worry about all auth, and register to call into it as needed, than to smatter auth logic between the two.