application_helper.rb 224 B

123456789
  1. # Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
  2. module ApplicationHelper
  3. def inline_svg(path)
  4. File.open("public/assets/images/#{path}", 'rb') do |file|
  5. raw file.read
  6. end
  7. end
  8. end