diff options
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 36e31929e..7a74a4d96 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -10,6 +10,10 @@ module ApplicationHelper return match[1] unless match.nil? end + def local_id?(id) + id.start_with?("tag:#{LOCAL_DOMAIN}") + end + def subscription_url(account) add_base_url_prefix subscriptions_path(id: account.id, format: '') end |