toto
toto copied to clipboard
Missing ActionView helpers
I find that unlike views in my main app, the views in the Toto app that I've integrated do NOT support typical RoR helpers (like e.g. stylesheet_link_tag). Is that on purpose / by design? If not, can it be changed?
Toto, is not Rails based application so it does not share it's helpers. But I guess you can try "include" desired helpers, e.g. (the dumbest way):
module Toto
module Template
include ActionView::Helpers
end
end