From 79baf2fd996c8b69333cf991f4ccf93f0965a744 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 24 Feb 2016 00:57:47 +0100 Subject: Process favourites, reblogs and replies from Salmon --- app/helpers/application_helper.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app/helpers') diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index ed7b59165..36e31929e 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -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 -- cgit