0
0
Fork 0

Give the replies collection an identifier and enable pagination (#10128)

This commit is contained in:
ThibG 2019-02-28 18:16:34 +01:00 committed by Eugen Rochko
parent 9d3c6f1849
commit d8498b3983
4 changed files with 67 additions and 3 deletions

View file

@ -48,6 +48,12 @@ class ActivityPub::TagManager
activity_account_status_url(target.account, target)
end
def replies_uri_for(target, page_params = nil)
raise ArgumentError, 'target must be a local activity' unless %i(note comment activity).include?(target.object_type) && target.local?
replies_account_status_url(target.account, target, page_params)
end
# Primary audience of a status
# Public statuses go out to primarily the public collection
# Unlisted and private statuses go out primarily to the followers collection