You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
482 B

8 years ago
8 years ago
  1. module ApplicationHelper
  2. include GrapeRouteHelpers::NamedRouteMatcher
  3. def unique_tag(date, id, type)
  4. "tag:#{LOCAL_DOMAIN},#{date.strftime('%Y-%m-%d')}:objectId=#{id}:objectType=#{type}"
  5. end
  6. def subscription_url(account)
  7. add_base_url_prefix subscription_path(id: account.id, format: '')
  8. end
  9. def salmon_url(account)
  10. add_base_url_prefix salmon_path(id: account.id, format: '')
  11. end
  12. def add_base_url_prefix(suffix)
  13. "#{root_url}api#{suffix}"
  14. end
  15. end