summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2018-06-19Merge branch 'features/column_media_streaming' into 'develop'lambda
Add streaming to media tabs of federated and local TLs See merge request pleroma/pleroma!225
2018-06-19Merge branch 'bugfix/block-follow-relationships' into 'develop'lambda
fix follow relationship leaks when blocked See merge request pleroma/pleroma!230
2018-06-19user: add helper function to fetch a user given only an ap_id (fix tests)William Pitcock
2018-06-19Merge branch 'feature/exclude-replies-filter' into 'develop'lambda
activitypub: support filtering activities by whether or not they are a reply (closes #109) Closes #109 See merge request pleroma/pleroma!226
2018-06-19user: when processing a block in User.block(), ensure all follow ↵William Pitcock
relationships are broken this is needed for activitypub conformance ref #213
2018-06-18activitypub transmogrifier: fix handling of contentMap.William Pitcock
2018-06-18object: add helper functions to handle various forms of a given object and ↵William Pitcock
return a normalized one
2018-06-18ostatus: we need to include the original author of a message as a mentionWilliam Pitcock
this is due to the use of activity.recipients which may not necessarily contain the original author if the actors are not following each other.
2018-06-18activitypub: filter destination list for announce activities differently ↵William Pitcock
than normal (closes #164)
2018-06-18activitypub: support filtering activities by whether or not they are a reply ↵William Pitcock
(closes #109)
2018-06-17MastodonAPI: Add streaming to media tabs of federated and local TLsHaelwenn (lanodan) Monnier
2018-06-17Token-generating taskHenry Jameson
2018-06-16Merge branch 'develop' into feature/configurable-blockssquidboi
2018-06-16Merge branch 'feature/configure-mrf-rejectnonpublic' into 'develop'lambda
Configs for mrf_rejectnonpublic See merge request pleroma/pleroma!205
2018-06-15Merge branch 'bugfix/mastofe_thread_render' into 'develop'eal
lib/pleroma/web/mastodon_api/views/status_view.ex: Fix status.json so it renders threads See merge request pleroma/pleroma!223
2018-06-15Pleroma.Web.MastodonAPI.StatusView: Fix status.json so it renders threadsHaelwenn (lanodan) Monnier
2018-06-15Fix typolain
2018-06-14Merge branch 'fix/missing-file-extension' into 'develop'lambda
Add missing file extension if file does not have one See merge request pleroma/pleroma!222
2018-06-14Add missing file extension if file does not have oneFrancis Dinh
2018-06-14upload.ex: add MPEG Layer 3 file header.eal
2018-06-14Merge branch 'bugfix/mrf-orphaning' into 'develop'lambda
activitypub transmogrifier: handle activity lookup failure Closes #156 See merge request pleroma/pleroma!216
2018-06-14Merge branch 'feature/twitterapi-unrepeat' into 'develop'lambda
Add TwitterAPI unretweet endpoint and cleanup AP.unannounce See merge request pleroma/pleroma!218
2018-06-14Merge branch 'bugfix/oauth2-param-name' into 'develop'lambda
oauth: support either name or username parameter with grant_type=password Closes #180 See merge request pleroma/pleroma!219
2018-06-14Merge branch 'bugfix/oauth-password-with-email' into 'develop'lambda
oauth: fix password-based login when username is email address Closes #199 See merge request pleroma/pleroma!220
2018-06-14oauth: fix password-based login when username is email addressWilliam Pitcock
closes #199
2018-06-14oauth: support either name or username parameter with grant_type=passwordWilliam Pitcock
closes #180
2018-06-13Add unretweet TwAPI endpoint and cleanup AP.unannounceFrancis Dinh
2018-06-13activitypub transmogrifier: handle activity lookup failureWilliam Pitcock
with the introduction of MRF, it is possible that an activity may be orphaned from it's parent, if an activity in the chain was rejected by the active MRF policies. accordingly, handle this in the same way as any other orphaned activity. closes #156
2018-06-13streamer: don't relay boosts of messages which would otherwise be blockedWilliam Pitcock
2018-06-13Merge branch 'feature/webfinger-rfc7033-compliant' into 'develop'lambda
webfinger: send JRD by default instead of XRD See merge request pleroma/pleroma!211
2018-06-13webfinger: send JRD by default instead of XRDWilliam Pitcock
JRD being the default representation for WebFinger responses was standardized 5 years ago in RFC 7033.
2018-06-13webfinger: refactor webfinger() functionsWilliam Pitcock
- remove code duplication - move user lookup to parent with statement - tighten both user lookup by nickname and activitypub URI with a type constraint
2018-06-12set_moderator: ensureall applications are started.eal
2018-06-12formattingHenry Jameson
2018-06-12Initial invites support + tests.Henry Jameson
2018-06-12Merge branch 'develop' into 'develop'lambda
Dedupe uploads See merge request pleroma/pleroma!115
2018-06-12Update sample_config.eexlambda
2018-06-12Merge branch 'feature/list-streaming' into 'develop'lambda
MastoAPI: Add streaming for lists. See merge request pleroma/pleroma!183
2018-06-11router: remove stub /domain_blocks entryWilliam Pitcock
2018-06-11twitter api: add approve/deny endpointsWilliam Pitcock
2018-06-11twitter api: add friend requests list apiWilliam Pitcock
2018-06-11twitterapi: user view: return if an account is locked or notWilliam Pitcock
2018-06-11activitypub transmogrifier: accept/reject outgoing: we might send the actual ↵William Pitcock
object instead of the URI in some cases, handle it
2018-06-11run mix formatWilliam Pitcock
2018-06-11twitterapi: add profile setting for locked/unlocked accountsWilliam Pitcock
2018-06-11activitypub transmogrifier: remove debug codeWilliam Pitcock
2018-06-11user: add a workaround for situations where Pleroma may believe a followee ↵William Pitcock
is followed this was caused by lack of Undo follows in the early days, and can likely be eventually removed
2018-06-11activitypub: when unfollowing, update the follow activity's disposition to ↵William Pitcock
'cancelled' so it cannot be reused
2018-06-11mastodon api: allow setting an account locked or notWilliam Pitcock
2018-06-11user: use Enum.uniq on the follow request queryWilliam Pitcock