Process favourites, reblogs and replies from Salmon
This commit is contained in:
parent
ee73d35eea
commit
79baf2fd99
4 changed files with 45 additions and 24 deletions
|
@ -5,6 +5,11 @@ module ApplicationHelper
|
|||
"tag:#{LOCAL_DOMAIN},#{date.strftime('%Y-%m-%d')}:objectId=#{id}:objectType=#{type}"
|
||||
end
|
||||
|
||||
def unique_tag_to_local_id(tag, expected_type)
|
||||
Regexp.new("objectId=([\d]+):objectType=#{expected_type}").match(tag)
|
||||
return match[1] unless match.nil?
|
||||
end
|
||||
|
||||
def subscription_url(account)
|
||||
add_base_url_prefix subscriptions_path(id: account.id, format: '')
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue