summary refs log tree commit diff
path: root/scripts-dev/check_auth.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-04-05Fix overzealous cache invalidationRichard van der Hoff2-26/+84
Fixes an issue where a cache invalidation would invalidate *all* pending entries, rather than just the entry that we intended to invalidate.
2018-04-05NON NULL -> NOT NULLLuke Barnard1-1/+1
2018-04-05Use "/settings/" (plural)Luke Barnard3-3/+3
2018-04-05Use DEFAULT join_policy of "invite" in dbLuke Barnard1-1/+1
2018-04-05Document set_group_join_policyLuke Barnard1-0/+6
2018-04-05Review commentsNeil Johnson2-5/+6
Use iteritems over item to loop over dict formatting
2018-04-04Remove redundant metrics which were deprecated in 0.27.0.Richard van der Hoff5-52/+28
2018-04-04phone home cache size configurationsJan Christian Grünhage1-0/+3
2018-04-04Document the additional routes for the event_creator workerTravis Ralston1-1/+3
Fixes https://github.com/matrix-org/synapse/issues/3018 Signed-off-by: Travis Ralston <travpc@gmail.com>
2018-04-04Move the mention of the main synapse worker higher upTravis Ralston1-13/+6
Signed-off-by: Travis Ralston <travpc@gmail.com>
2018-04-04Revert "improve mxid check performance"Richard van der Hoff1-4/+3
2018-04-03Use join_policy API instead of joinableLuke Barnard7-23/+58
The API is now under /groups/$group_id/setting/m.join_policy and expects a JSON blob of the shape ```json { "m.join_policy": { "type": "invite" } } ``` where "invite" could alternatively be "open".
2018-04-03Fix json encoding bug in replicationRichard van der Hoff1-1/+1
json encoders have an encode method, not a dumps method.
2018-03-31improve mxid check performance ~4xAdrian Tschira1-3/+4
Signed-off-by: Adrian Tschira <nota@notafile.com>
2018-03-29Remove uses of events.contentRichard van der Hoff3-7/+12
2018-03-29Use static JSONEncodersRichard van der Hoff4-20/+34
using json.dumps with custom options requires us to create a new JSONEncoder on each call. It's more efficient to create one upfront and reuse it.
2018-03-29Use simplejson throughoutRichard van der Hoff3-5/+9
Let's use simplejson rather than json, for consistency.
2018-03-29pep8Neil Johnson1-2/+4
2018-03-29Remove need for sqlite specific queryNeil Johnson1-30/+57
2018-03-28 fix pep8 errorsNeil Johnson1-3/+0
2018-03-28This should probably be a PUTDavid Baker1-1/+1
2018-03-28remove twisted deferral cruftNeil Johnson1-6/+3
2018-03-28OK, smallint it is thenDavid Baker1-1/+1
2018-03-28Grr. Copy the definition from is_adminDavid Baker1-1/+1
2018-03-28bump schema versionNeil Johnson1-1/+1
2018-03-28Support multi client R30 for psqlNeil Johnson2-9/+31