summary refs log tree commit diff
path: root/synapse/storage/monthly_active_users.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace returnValue with return (#5736)Amber Brown2019-07-231-1/+1
|
* Run Black. (#5482)Amber Brown2019-06-201-3/+3
|
* Run black on the rest of the storage module (#4996)Amber Brown2019-04-031-28/+17
|
* Fix UPSERTs on SQLite 3.24+ (#4477)Amber Brown2019-01-281-3/+9
|
* create support user (#4141)Neil Johnson2018-12-141-2/+28
| | | | | | Allow for the creation of a support user. A support user can access the server, join rooms, interact with other users, but does not appear in the user directory nor does it contribute to monthly active user limits.
* Neilj/fix mau initial reserved users (#4211)Neil Johnson2018-11-281-2/+3
| | | | | | | | * fix transaction wrapping bug that caused get_user_id_by_threepid_txn to fail * towncrier * white space
* Add option to track MAU stats (but not limit people) (#3830)Travis Ralston2018-11-151-34/+40
|
* add new lineNeil Johnson2018-10-251-0/+1
|
* improve commentsNeil Johnson2018-10-251-6/+6
|
* fix style inconsistenciesNeil Johnson2018-10-241-15/+28
|
* remove white spaceNeil Johnson2018-10-231-2/+1
|
* fix race condiftion in calling initialise_reserved_usersNeil Johnson2018-10-231-13/+33
|
* fix #3854Neil Johnson2018-09-261-1/+4
|
* improve namingNeil Johnson2018-09-121-1/+1
|
* expose number of real reserved usersNeil Johnson2018-09-121-0/+17
|
* ensure guests never enter mau listNeil Johnson2018-09-061-4/+3
|
* guest users should not be part of mau totalNeil Johnson2018-09-051-1/+6
|
* move threepid checker to config, add missing yieldsNeil Johnson2018-08-311-14/+0
|
* ensure post registration auth checks do not fail erroneouslyNeil Johnson2018-08-311-1/+14
|
* Implement trail usersErik Johnston2018-08-231-0/+5
|
* Add missing yieldErik Johnston2018-08-231-1/+2
|
* call reap on start up and fix under reaping bugNeil Johnson2018-08-161-1/+4
|
* adding missing yieldNeil Johnson2018-08-141-1/+1
|
* Merge pull request #3670 from matrix-org/neilj/mau_sync_blockNeil Johnson2018-08-141-5/+5
|\ | | | | Block ability to read via sync if mau limit exceeded
| * rename _user_last_seen_monthly_activeNeil Johnson2018-08-091-5/+5
| |
* | fix sqlite/postgres incompatibility in reap_monthly_active_usersNeil Johnson2018-08-111-16/+28
|/
* Merge branch 'develop' of github.com:matrix-org/synapse into ↵Neil Johnson2018-08-081-1/+1
|\ | | | | | | neilj/reserved_users
| * typosNeil Johnson2018-08-081-2/+2
| |
* | prevent total number of reserved users being too largeNeil Johnson2018-08-071-1/+3
| |
* | implement reserved users for mau limitsNeil Johnson2018-08-071-11/+34
| |
* | WIP building out mau reserved usersNeil Johnson2018-08-061-1/+15
|/
* Fix postgres compatibility bugNeil Johnson2018-08-061-4/+15
|
* make use of _simple_select_one_onecol, improved commentsNeil Johnson2018-08-061-8/+11
|
* bug fixesNeil Johnson2018-08-031-2/+1
|
* wip commit - tests failingNeil Johnson2018-08-031-18/+48
|
* fix caching and testsNeil Johnson2018-08-031-48/+43
|
* typoNeil Johnson2018-08-021-1/+1
|
* wip attempt at cachingNeil Johnson2018-08-021-9/+47
|
* insertion into monthly_active_usersNeil Johnson2018-08-021-6/+12
|
* Merge branch 'neilj/mau_tracker' of github.com:matrix-org/synapse into ↵Neil Johnson2018-08-021-0/+3
|\ | | | | | | neilj/mau_tracker
| * normalise reaping queryNeil Johnson2018-08-011-3/+38
| |
* | Revert "change monthly_active_users table to be a single column"Neil Johnson2018-08-021-3/+7
|/ | | | This reverts commit ec716a35b219d147dee51733b55573952799a549.
* change monthly_active_users table to be a single columnNeil Johnson2018-08-011-7/+3
|
* clean upNeil Johnson2018-08-011-15/+3
|
* api into monthly_active_users tableNeil Johnson2018-07-311-0/+89