The code powering m.abunchtell.com https://m.abunchtell.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

29 Zeilen
706 B

  1. module ApplicationHelper
  2. include RoutingHelper
  3. def unique_tag(date, id, type)
  4. "tag:#{LOCAL_DOMAIN},#{date.strftime('%Y-%m-%d')}:objectId=#{id}:objectType=#{type}"
  5. end
  6. def unique_tag_to_local_id(tag, expected_type)
  7. Regexp.new("objectId=([\d]+):objectType=#{expected_type}").match(tag)
  8. return match[1] unless match.nil?
  9. end
  10. def local_id?(id)
  11. id.start_with?("tag:#{LOCAL_DOMAIN}")
  12. end
  13. def subscription_url(account)
  14. add_base_url_prefix subscriptions_path(id: account.id, format: '')
  15. end
  16. def salmon_url(account)
  17. add_base_url_prefix salmon_path(id: account.id, format: '')
  18. end
  19. def add_base_url_prefix(suffix)
  20. File.join(root_url, "api", suffix)
  21. end
  22. end