tiss2go/app/helpers/application_helper.rb
Tobias Eidelpes 6014c64e64 Remove JavaScript in navbar and include logout
Signed-off-by: Tobias Eidelpes <tobias@eidelpes.info>
2020-04-14 11:39:41 +02:00

9 lines
178 B
Ruby

module ApplicationHelper
# Used to render svg image files
def show_svg(path)
File.open("app/assets/images/#{path}", 'rb') do |file|
raw file.read
end
end
end