Created
May 19, 2009 14:35
-
-
Save abloom/114139 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 BoardController < ActionController::Base | |
before_filter :build_nav_bar_links | |
def index | |
... | |
end | |
private | |
def build_nav_bar_links | |
@nav_bar_links = nav_bar_links | |
end | |
def nav_bar_links | |
[["Something", something_url], | |
["Else", else_url]] | |
end | |
end |
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 BoardController | |
include RandomPlugin::NavBarExtensions | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment