summary refs log tree commit diff
path: root/synapse/storage/registration.py (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add appservice workerErik Johnston2016-08-181-11/+22
* Refactor user_delete_access_tokens. Invalidate get_user_by_access_token to sl...Erik Johnston2016-08-151-38/+32
* Fix typoRichard van der Hoff2016-07-261-1/+1
* Delete refresh tokens when deleting devicesRichard van der Hoff2016-07-261-13/+45
* Implement deleting devicesRichard van der Hoff2016-07-261-4/+22
* Further registration refactoringRichard van der Hoff2016-07-191-2/+4
* Add device_id support to /loginRichard van der Hoff2016-07-181-10/+18
* Add a comment explaining allow_noneMark Haines2016-07-081-0/+2
* Ensure that the guest user is in the database when upgrading accountsMark Haines2016-07-081-0/+13
* Remove spurious txnErik Johnston2016-07-051-9/+0
* Fix for postgresErik Johnston2016-07-051-2/+2
* Add an admin option to shared secret registrationErik Johnston2016-07-051-23/+38
* Feature: Add deactivate account admin APIErik Johnston2016-06-301-0/+9
* Remove registered_users from the distributor.Mark Haines2016-06-171-3/+14
* Add cache to get_user_by_idErik Johnston2016-05-091-0/+3
* pep8David Baker2016-04-061-1/+1
* Make pushers use the event_push_actions table instead of listening on an even...David Baker2016-04-061-20/+0
* Use google style doc strings.Mark Haines2016-04-011-6/+9
* Thats not how transactions work.Erik Johnston2016-03-111-13/+16
* Implement logoutErik Johnston2016-03-111-14/+35
* Fix SQL statementErik Johnston2016-03-111-1/+1
* more pep8David Baker2016-03-111-1/+1
* Make select more sensible when dseleting access tokens, rename pusher deletio...David Baker2016-03-111-5/+3
* Delete old, unused methods and rename new one to just be `user_delete_access_...David Baker2016-03-111-15/+2
* Dear PyCharm, please indent sensibly for me. Thx.David Baker2016-03-111-1/+1
* Fix cache invalidation so deleting access tokens (which we did when changing ...David Baker2016-03-111-8/+20
* Store appservice ID on registerDaniel Wagner-Hall2016-03-101-6/+34
* Load the current id in the IdGenerator constructorMark Haines2016-03-011-3/+3
* Generate guest access token on 3pid invitesDaniel Wagner-Hall2016-02-241-0/+44
* Allocate guest user IDs numericcallyDaniel Wagner-Hall2016-02-051-0/+36
* Add descriptionsErik Johnston2016-02-031-0/+1
* Make notifications go quickerErik Johnston2016-01-181-3/+23
* Postgres doesn't like booleansDavid Baker2016-01-111-2/+2
* This comma is actually importantDavid Baker2016-01-071-1/+1
* Adding is_guest here won't work because it just constructs a dict of uid -> p...David Baker2016-01-061-1/+1
* Add is_guest flag to users db to track whether a user is a guest user or not....David Baker2016-01-061-11/+29
* Allow guests to upgrade their accountsDaniel Wagner-Hall2016-01-051-7/+16
* Allow users to change which account a 3pid is bound toMark Haines2015-12-151-1/+1
* Allow guests to register and call /events?room_id=Daniel Wagner-Hall2015-11-041-7/+8
* Add some docstringsDaniel Wagner-Hall2015-09-221-0/+1
* Implement configurable stats reportingDaniel Wagner-Hall2015-09-221-0/+12
* Merge erikj/user_dedup to developDaniel Wagner-Hall2015-08-261-0/+14
* Stop looking up "admin", which we never readDaniel Wagner-Hall2015-08-251-3/+2
* Remove completely unused concepts from codebaseDaniel Wagner-Hall2015-08-251-3/+2
* /tokenrefresh POST endpointDaniel Wagner-Hall2015-08-201-0/+62
* s/by_token/by_access_token/gDaniel Wagner-Hall2015-08-201-3/+3
* Merge pull request #221 from matrix-org/authDaniel Wagner-Hall2015-08-141-6/+6
|\
| * Simplify LoginHander and AuthHandlerDaniel Wagner-Hall2015-08-121-6/+6
| * Change Cache to not use *args in its interfaceErik Johnston2015-08-071-1/+1
* | Move all the caches into their own package, synapse.util.cachesErik Johnston2015-08-111-1/+2
* | Change Cache to not use *args in its interfaceErik Johnston2015-08-071-1/+1
|/
* user_id now in user_threepidsDavid Baker2015-05-011-3/+3
* Don't use self.execute: it's designed for fetching stuffDavid Baker2015-05-011-3/+8
* No id field on userDavid Baker2015-05-011-5/+1
* More missed get_user_by_id API changesDavid Baker2015-05-011-3/+3
* Be more postgressiveDavid Baker2015-04-291-2/+2
* Merge branch 'develop' of github.com:matrix-org/synapse into postgresErik Johnston2015-04-281-8/+72
|\
| * pep8David Baker2015-04-171-1/+1
| * Password reset, finally.David Baker2015-04-171-1/+15
| * Add endpoint to get threepids from serverDavid Baker2015-04-171-0/+11
| * pep8David Baker2015-04-171-1/+1
| * make add3pid servlet workDavid Baker2015-04-171-0/+11
| * 1) Pushers are now associated with an access tokenDavid Baker2015-03-241-1/+1
| * Make deleting other access tokens when you change your password actually workDavid Baker2015-03-241-5/+11
| * Implement password changing (finally) along with a start on making client/ser...David Baker2015-03-231-4/+29
* | Go back to storing JSON in TEXTErik Johnston2015-04-161-5/+0
* | Add missing yield in storage funcErik Johnston2015-04-151-1/+1
* | Handle the fact that in sqlite binary data might be stored as unicode or bytesErik Johnston2015-04-101-1/+3
* | Use generic db exceptions rather than sqlite3 specific onesErik Johnston2015-04-081-3/+1
* | PEP8Erik Johnston2015-04-071-1/+0
* | Don't use AUTOINCREMENT, use an in memory versionErik Johnston2015-04-071-3/+7
* | Make work in both Maria and SQLite. Fix testsErik Johnston2015-04-011-2/+6
* | Fix unicode database supportErik Johnston2015-03-251-4/+14
* | Merge branch 'develop' of github.com:matrix-org/synapse into mysqlErik Johnston2015-03-201-2/+9
|\|
| * Give sensible names for '_simple_...' transactionsErik Johnston2015-03-201-2/+7
| * @cached() annotate get_user_by_token() - achieves a minor DB performance impr...Paul "LeoNerd" Evans2015-03-171-1/+6
* | Convert storage layer to be mysql compatibleErik Johnston2015-03-191-9/+5
|/
* Also give _execute() a descriptionPaul "LeoNerd" Evans2015-03-111-2/+1
* Extract the id token of the token when authing users, include the token and d...Mark Haines2015-01-281-1/+2
* Update copyright noticesMark Haines2015-01-061-1/+1
* Fix pep8 codestyle warningsMark Haines2014-11-201-7/+9
* Add an EventValidator. Fix bugs in auth ++ storageErik Johnston2014-11-101-1/+5
* Add transaction level logging and timing information. Add a _simple_delete me...Erik Johnston2014-10-281-2/+5
* Update docstringErik Johnston2014-09-291-1/+2
* SYN-48: Implement WHOIS rest servletErik Johnston2014-09-291-11/+15
* Add auth check to test if a user is an admin or not.Erik Johnston2014-09-291-0/+8
* Add a .runInteraction() method on SQLBaseStore itself to wrap the .db_poolPaul "LeoNerd" Evans2014-09-121-2/+2
* fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org has...Matthew Hodgson2014-09-031-1/+1
* Be more helpful when failing to register/login, stating why (communication er...Kegan Dougal2014-08-141-2/+2
* add in whitespace after copyright statements to improve legibilityMatthew Hodgson2014-08-131-0/+1
* Reference Matrix Home Servermatrix.org2014-08-121-0/+113