Created
February 7, 2012 20:03
-
-
Save mokevnin/1761610 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 Web::InvestController < Web::ApplicationController | |
| layout 'invest' | |
| before_filter do | |
| title configus.base_title | |
| title current_section | |
| add_breadcrumb t(:bc_main), root_path | |
| add_breadcrumb current_section, invest_path | |
| end | |
| def show | |
| end | |
| helper_method :current_section | |
| private | |
| def current_section | |
| W::Section.invest | |
| end | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment