summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2017-11-02TwitterAPI: Add blocking to fetches.Roger Braun
2017-11-02Handle nil cases.Roger Braun
2017-11-02Don't return blocked users' activities in contexts.Roger Braun
2017-11-02Don't return activities from blocked users.Roger Braun
2017-11-02Don't create notifications if the user is blocked.Roger Braun
2017-11-02Add blocks to User.Roger Braun
2017-11-01Handle empty terms / tags.Roger Braun
2017-10-31Federate out content warnings.Roger Braun
2017-10-31Allow using cws in mastodon api.Roger Braun
2017-10-31MastoAPI: Include CW.Roger Braun
2017-10-31TwitterAPI: Display cws.Roger Braun
2017-10-31Save cws in the activitypub data.Roger Braun
2017-10-31Avoid potentially slow count queries for user note count.Roger Braun
For a variety of reasons, posgresql won't use the available actor, type index to do an index only scan. We now just increase the user note count, which will lead to slightly wrong counts in some cases, but it's better than the potentially very slow count query.
2017-10-31Only search through last 100_000 activities for fetches.Roger Braun
This is purely a performance enhancement
2017-10-31MastoAPI: Return id as string instead of integer.Roger Braun
2017-10-31MastoAPI: Always return an url for statuses.Roger Braun
External url if available, id if not.
2017-10-30Move user search to User module.Roger Braun
2017-10-30Fix /api/v1/accounts/search by splitting account search into its own functionMark Felder
2017-10-29Clean style.eal
Use 'follow' instead of 'follows' and correct indentation.
2017-10-29Fix return type of /api/v1/followseal
2017-10-28Return error message on errorseal
2017-10-28Add mastodon API endpoint for followeal
2017-10-24Use more efficient query to fetch likes.Roger Braun
2017-10-24Use more efficient user note count update query.Roger Braun
2017-10-24Use different index for object fetching.Roger Braun
2017-10-24Return nil for nil object requests.Roger Braun
2017-10-23Use index in basic activity query.Roger Braun
2017-10-23Speed up deletion and related queries.Roger Braun
2017-10-23Merge branch 'develop' of ssh.gitgud.io:lambadalambda/pleroma into developRoger Braun
2017-10-23MastoAPI: Add emoji output.Roger Braun
2017-10-19Add an API endpoint for emoji.eal
2017-10-19Revert "Simplify query."Roger Braun
This reverts commit a17b2613795b24162e953dd457b411dddc0c902e.
2017-10-19Add password reset.Roger Braun
2017-10-18Simplify query.Roger Braun
2017-10-05Don't reject already accepted subscriptions.Roger Braun
2017-09-18HTTP Signatures: Work with all test vectors.Roger Braun
2017-09-18Start of HTTP Signatures.Roger Braun
2017-09-17Remove tag links for now, they break some regular links.Roger Braun
2017-09-17Add tag links.Roger Braun
2017-09-17TwitterAPI: Return proper error.Roger Braun
Fixes #32.
2017-09-17MastoAPI: Fix reblog view.Roger Braun
2017-09-17MastoAPI: Return reblogs, too.Roger Braun
2017-09-17MastoAPI: Add repeats to statusview.Roger Braun
2017-09-17Prefer post-specific emoji.Roger Braun
2017-09-17MastodonAPI: Add user favorites endpoint.Roger Braun
2017-09-17TwitterAPI: Use correct endpoint for tag timeline.Roger Braun
2017-09-17Fix typo.Roger Braun
2017-09-17TwitterAPI: Add tag timeline.Roger Braun
2017-09-17Use inserted_at as sort in search.Roger Braun
2017-09-17Use desc id to sort instead of desc inserted_atRoger Braun
Should mean the same and is indexed.