summary refs log tree commit diff
path: root/scripts-dev/check_auth.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-09-20Correctly return next tokenErik Johnston1-1/+2
2017-09-20Fix initial syncErik Johnston1-1/+9
2017-09-19Ensure that creator of group sees group down /syncErik Johnston2-4/+31
2017-09-19Fix overzealous kicking of guest users (#2453)Richard van der Hoff1-1/+1
We should only kick guest users if the guest access event is authorised.
2017-09-18Clean up and document handling of logcontexts in Keyring (#2452)Richard van der Hoff2-28/+110
I'm still unclear on what the intended behaviour for `verify_json_objects_for_server` is, but at least I now understand the behaviour of most of the things it calls...
2017-09-18Don't filter out current state events from timelineErik Johnston2-3/+18
2017-09-18Also include the room_idDavid Baker1-0/+1
as really it's part of the event ID
2017-09-18Use .get - it's much shorterDavid Baker1-1/+1
2017-09-18Add support for event_id_only push formatDavid Baker1-0/+19
Param in the data dict of a pusher that tells an HTTP pusher to send just the event_id of the event it's notifying about and the notification counts. For clients that want to go & fetch the body of the event themselves anyway.
2017-09-18Correctly handle leaving room in /key/changesErik Johnston1-13/+12
2017-09-15Fix typoErik Johnston1-1/+1
2017-09-14Actually hook leave notifs upErik Johnston1-2/+3
2017-09-13Handle joining/leaving rooms in /keys/changesErik Johnston1-1/+38
2017-09-13Get left roomsErik Johnston1-3/+32
2017-09-12In sync handle device lists for newly joined/left roomsErik Johnston1-2/+10
2017-09-08Add left section to /keys/changesErik Johnston3-11/+19
2017-09-07Send down device list change notif when member leaves/rejoins roomErik Johnston3-14/+55
2017-09-05Exclude the github issue template from our sdist (#2440)Richard van der Hoff2-0/+1
PR #2413 added an issue template, but just adding files to the project directory upsets the packaging scripts: we need to explicitly include or exclude them. Move the template into a .github directory to make that easy, and to de-clutter the root a bit.
2017-09-05do tox install with pip -eRichard van der Hoff1-5/+29
- this ensures we end up with a working virtualenv which we can use for other things.
2017-09-01Document known to work postgres versionPaul Tötterman1-0/+2
2017-09-01Set --python when running sytestRichard van der Hoff4-0/+4
.. because I want to make the 'install_and_run' script useful for non-synapse jobs, which do not accept --python. In any case we set up the path here, so sytest shouldn't be guessing it.
2017-09-01fix python path in jenkins scriptsRichard van der Hoff4-4/+4
2017-09-01Set --python when running sytestRichard van der Hoff4-0/+4
.. because I want to make the 'install_and_run' script useful for non-synapse jobs, which do not accept --python. In any case we set up the path here, so sytest shouldn't be guessing it.
2017-08-25Add user profiles to summary from group serverErik Johnston3-2/+30
2017-08-25Fix typos and reinheritErik Johnston1-12/+6
2017-08-25Split out profile handler to fix testsErik Johnston11-29/+35
2017-08-25Add remote profile cacheErik Johnston5-5/+237
2017-08-25Add _simple_updateErik Johnston1-19/+32
2017-08-23Tweaks to the upgrade instructionsRichard van der Hoff1-33/+42
2017-08-22test federation client: Allow server-name and key-file as optionsRichard van der Hoff1-8/+28
so that you don't necessarily need a config file.
2017-08-21Use BOOLEAN rather than TEXT typeErik Johnston1-1/+1
2017-08-21Groups: Fix mising json.load in initial syncErik Johnston1-1/+7
2017-08-17Improvements to the federation test clientRichard van der Hoff1-7/+58
Make it read the config file, primarily.
2017-08-17Update ISSUE_TEMPLATE.mdTom Lant1-1/+5
Added instructions for checking server version.
2017-08-17Update ISSUE_TEMPLATE.mdTom Lant1-3/+10
Responding to review comments.
2017-08-16Add prometheus configRichard van der Hoff3-0/+436
... from https://github.com/matrix-org/synapse-prometheus-config.
2017-08-16Fix user_dir startupRichard van der Hoff1-1/+1
Add missing parameter to _base.start_worker_reactor
2017-08-16Fix process startupRichard van der Hoff1-10/+13
escape the % that got added in 92168cb so that the process starts up ok.
2017-08-15explain why CPU affinity is a good ideaMatthew Hodgson1-0/+8
2017-08-15Allow configuration of CPU affinityRichard van der Hoff5-1/+23
Make it possible to set the CPU affinity in the config file, so that we don't need to remember to do it manually every time.
2017-08-15Factor out common application startRichard van der Hoff11-464/+248
We have 10 copies of this code, and I don't really want to update each one separately.
2017-08-14