summary refs log tree commit diff
path: root/synapse/storage/push_rule.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add a cache for get_push rules for user, fix cache invalidationMark Haines2015-05-221-1/+17
|
* Merge branch 'master' of github.com:matrix-org/synapse into developErik Johnston2015-05-221-7/+14
|\
| * Don't try to use a txn when not in one, remove spurious debug loggingMark Haines2015-05-211-3/+1
| |
| * Add caches for things requested by the pushersMark Haines2015-05-211-7/+16
| |
* | Add ID generator for push_rules_enable to #resolve SYN-378David Baker2015-05-141-2/+12
|/
* Prefer to use _simple_*.Erik Johnston2015-05-111-44/+41
|
* push_rules table expects an 'id' fieldErik Johnston2015-05-111-13/+12
|
* Fix push rule bug: can't insert bool into small int columnErik Johnston2015-05-101-1/+1
|
* Merge branch 'develop' of github.com:matrix-org/synapse into mysqlErik Johnston2015-03-201-3/+6
|\
| * Give sensible names for '_simple_...' transactionsErik Johnston2015-03-201-3/+6
| |
* | Convert storage layer to be mysql compatibleErik Johnston2015-03-191-2/+2
|/
* Also give _execute() a descriptionPaul "LeoNerd" Evans2015-03-111-1/+1
|
* Add the master push rule for the break-my-push button. Allow server default ↵David Baker2015-03-101-22/+5
| | | | rules to be disabled by default.
* Use if not results rather than len, as per feedback.David Baker2015-03-041-1/+1
|
* s/user_name/user/ as per mjark's commentDavid Baker2015-03-021-3/+3
|
* Blank linesDavid Baker2015-03-021-0/+1
|
* Add API for getting/setting enabled-ness of push rules.David Baker2015-02-261-0/+24
|
* whitespaceDavid Baker2015-02-261-1/+2
|
* Add enable/disable overlay for push rules (REST API not yet hooked up)David Baker2015-02-251-0/+20
|
* Blunty replace json with simplejsonErik Johnston2015-02-111-1/+1
|
* Code-style fixesMark Haines2015-02-101-1/+3
|
* Give server default rules the 'default' attribute and fix various brokenness.David Baker2015-02-051-2/+5
|
* Code style fixes.Mark Haines2015-01-291-4/+5
|
* Allow the push rule delete method to take more specifiers.David Baker2015-01-281-8/+11
|
* Use %s instead of +David Baker2015-01-281-2/+2
|
* NewlineDavid Baker2015-01-281-0/+1
|
* Redundant parensDavid Baker2015-01-281-1/+1
|
* Add API to delete push rules.David Baker2015-01-231-0/+9
|
* Fix adding rules without before/after & add the rule that we couldn't find ↵David Baker2015-01-231-3/+5
| | | | to the error
* As yet fairly untested GET API for push rulesDavid Baker2015-01-221-4/+4
|
* Insufficient newlinesDavid Baker2015-01-221-0/+1
|
* Add rest API & store for creating push rulesDavid Baker2015-01-221-0/+196
Also make unrecognised request error look more like synapse errors because it makes it easier to throw them from within rest classes.