summary refs log tree commit diff
path: root/synapse/handlers/appservice.py (unfollow)
Commit message (Expand)AuthorFilesLines
2016-08-18Copypasta the 3PU support code to also do 3PLPaul "LeoNerd" Evans1-3/+30
2016-08-18Remove TODO note about request fields being strings - they're always stringsPaul "LeoNerd" Evans1-2/+0
2016-08-18Log a warning if an AS yields an invalid 3PU lookup resultPaul "LeoNerd" Evans1-1/+6
2016-08-18Scattergather the call out to ASes; validate received resultsPaul "LeoNerd" Evans1-7/+34
2016-08-18Filter 3PU lookups by only ASes that declare knowledge of that protocolPaul "LeoNerd" Evans3-3/+22
2016-08-18Since empty lookups now return 200/empty list not 404, we can safely log fail...Paul "LeoNerd" Evans1-3/+2
2016-08-18Ensure that 3PU lookup request fields actually get passed inPaul "LeoNerd" Evans1-1/+5
2016-08-18Extend individual list results into the main return list, don't appendPaul "LeoNerd" Evans1-1/+1
2016-08-18Don't catch the return-value-as-exception that @defer.inlineCallbacks will usePaul "LeoNerd" Evans1-1/+1
2016-08-18Make AppserviceHandler stream events from databaseErik Johnston5-25/+113
2016-08-18Missed a s/federation reader/media repository/ in a log messageMark Ha