-
-
Save ehrenmurdick/661859 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FooController | |
FanlinePaths = process_view_path("somewhere") | |
RingadocPaths = process_view_path("somewhere else") | |
before_filter do | |
case request.host | |
when 'fanline' | |
prepend_view_path FanlinePaths | |
when 'ringadoc' | |
prepend_view_path RingadocPaths | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment