summaryrefslogtreecommitdiffstats
path: root/users/models
Commit message (Collapse)AuthorAgeFilesLines
* Process Identity metadata name same as value (#194)Michael Manfre2022-12-171-1/+1
|
* Icon and image for Identity could be a listMichael Manfre2022-12-171-3/+9
|
* Handle timeouts on image fetchAndrew Godwin2022-12-171-5/+9
|
* Receive inbound reportsAndrew Godwin2022-12-172-3/+48
|
* Report function and adminAndrew Godwin2022-12-172-0/+130
|
* Download and store user avatars locally if smallAndrew Godwin2022-12-171-0/+12
|
* Catch all possible request errorsAndrew Godwin2022-12-172-17/+27
|
* Handle delete.note as well as delete.tombstoneAndrew Godwin2022-12-171-0/+2
|
* Fix serving of system actorAndrew Godwin2022-12-172-4/+5
| | | | Fixes #183
* Fetch emoji for user profilesAndrew Godwin2022-12-161-0/+7
|
* Fix mastodon LD namespaceAndrew Godwin2022-12-161-5/+2
| | | | Fixes #179
* Identity admin/moderationAndrew Godwin2022-12-161-2/+31
|
* User admin and LD schema fixesAndrew Godwin2022-12-164-2/+14
|
* URLs can be empty tooAndrew Godwin2022-12-151-1/+1
|
* Handle API identities with no nameAndrew Godwin2022-12-151-2/+2
|
* Basic Emoji suppport (#157)Michael Manfre2022-12-151-3/+35
|
* Fix static file URLsAndrew Godwin2022-12-121-3/+2
|
* A better way of handling URIs between local/remoteAndrew Godwin2022-12-121-13/+15
|
* Timelines workingAndrew Godwin2022-12-121-3/+42
|
* Add system actor and shared inboxAndrew Godwin2022-12-102-0/+7
|
* Media proxy, caching and tuning docsAndrew Godwin2022-12-101-2/+2
| | | | Fixes #67
* Add pyupgrade with --py310-plus in pre-commit (#103)Paolo Melchiorre2022-12-053-9/+7
|
* Make search work with URLsAndrew Godwin2022-12-041-1/+3
|
* Make the user fetch interval much longerAndrew Godwin2022-12-041-1/+1
|
* Explicitly ignore add and remove messages for nowAndrew Godwin2022-12-041-0/+6
|
* User fetching and inbox message cleaningAndrew Godwin2022-11-272-5/+25
|
* Collect more actor information in fetchAndrew Godwin2022-11-271-2/+40
| | | | Fixes #31
* Added default post visibilityMichael Manfre2022-11-251-1/+17
|
* Implement user discoverabilityAndrew Godwin2022-11-251-1/+5
|
* Add federation admin pageAndrew Godwin2022-11-251-0/+2
|
* Ensure usernames and domains are lowercaseAndrew Godwin2022-11-242-4/+6
|
* Code dedupe Webfinger and fix SystemActor inbox URLMichael Manfre2022-11-221-1/+4
|
* Say all our users are discoverable for nowAndrew Godwin2022-11-221-0/+1
|
* Outgoing mentions mostly work (exc. cc followers)Andrew Godwin2022-11-211-6/+6
|
* Catch more request errorsAndrew Godwin2022-11-211-2/+2
|
* Don't error fetching people if they're in the DBAndrew Godwin2022-11-211-2/+14
|
* Raise proper errors when it's our faultAndrew Godwin2022-11-201-2/+10
|
* Move signed request onto Identity as a shortcutAndrew Godwin2022-11-202-12/+25
|
* Add a system actor to sign outgoing S2S GETsAndrew Godwin2022-11-203-59/+112
|
* Don't error when retrieving existing userAndrew Godwin2022-11-201-0/+6
| | | | | Happens when a user is not yet fetched but we look them up via a successful webfinger
* Don't waste DB rows on bad inbox actorsAndrew Godwin2022-11-201-3/+9
| | | | | Seems Sidekiq will keep trying to deliver messages even when the actor no longer exists?
* Handle remote user deletionsAndrew Godwin2022-11-201-0/+4
|
* Actually do deletes rightAndrew Godwin2022-11-201-7/+8
|
* Actor delete, sentry async, faster statorAndrew Godwin2022-11-202-1/+20
|
* Add more error handlingAndrew Godwin2022-11-202-2/+5
|
* More error handling for remote fetchAndrew Godwin2022-11-201-7/+10
|
* Add error catching on actor fetchAndrew Godwin2022-11-201-5/+8
|
* A few more fixes from going liveAndrew Godwin2022-11-191-0/+2
|
* Deployment re-jigglingAndrew Godwin2022-11-181-2/+2
|
* Migration reset, start of docs, env varsAndrew Godwin2022-11-182-3/+6
|
* Signup and invite tweaksAndrew Godwin2022-11-183-1/+32
|
* Follows pageAndrew Godwin2022-11-171-0/+4
|
* Add signup and password resetAndrew Godwin2022-11-172-0/+93
|
* Return images and summary in actorAndrew Godwin2022-11-171-2/+20
|
* Add search and better notificationsAndrew Godwin2022-11-171-4/+9
|
* Add image/icon uploadAndrew Godwin2022-11-171-11/+22
|
* Force username to lowercase for nowAndrew Godwin2022-11-161-0/+3
|
* Handle post edits, follow undosAndrew Godwin2022-11-163-8/+34
|
* Call it admin rather than system settingsAndrew Godwin2022-11-162-4/+5
|
* Domains management pagesAndrew Godwin2022-11-162-0/+8
|
* Accept incoming action undosAndrew Godwin2022-11-151-0/+8
|
* Get outbound likes/boosts and their undos workingAndrew Godwin2022-11-152-1/+40
|
* Boosting! Incoming, anyway.Andrew Godwin2022-11-131-1/+5
|
* Post URIs and host-metaAndrew Godwin2022-11-122-3/+7
|
* Add JSON-LD signatures and tests for sig stuffAndrew Godwin2022-11-122-37/+8
|
* Got up to incoming posts workingAndrew Godwin2022-11-114-128/+186
|
* Inbound and outbound follows basic workingAndrew Godwin2022-11-103-16/+128
|
* Profile fetching now working on state machineAndrew Godwin2022-11-094-10/+105
|
* Most of the way through the stator refactorAndrew Godwin2022-11-094-15/+21
|
* Midway point in task refactor - changing directionAndrew Godwin2022-11-091-9/+19
|
* THE FOLLOWS, THEY WORKAndrew Godwin2022-11-071-11/+10
| | | | Well, in one direction anyway
* Rework task system and fetching.Andrew Godwin2022-11-063-91/+139
| | | | I can taste how close follow is to working.
* Signing works with OpenSSL.Andrew Godwin2022-11-061-20/+22
| | | | Will have to ask the cryptography peeps what I was doing wrong.
* Rework to a domains model for better vhostingAndrew Godwin2022-11-065-53/+208
|
* Move to the more sensible JSON-LD reprAndrew Godwin2022-11-061-45/+61
|
* Queuing system and lazy profile fetchAndrew Godwin2022-11-051-0/+26
|
* Get Actor fetching and parsing workingAndrew Godwin2022-11-054-6/+174
|
* Initial commit (users and statuses)Andrew Godwin2022-11-054-0/+162