0
0
Fork 0

Process favourites, reblogs and replies from Salmon

This commit is contained in:
Eugen Rochko 2016-02-24 00:57:47 +01:00
parent ee73d35eea
commit 79baf2fd99
4 changed files with 45 additions and 24 deletions

View file

@ -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