Displaying 1 result from an estimated 1 matches for "password_dur".
Did you mean:
password_buf
2006 Jun 07
6
Links on the left hand side - are components necessary?
...ontroller
uses_component_template_root
Link=Struct.new(:name,:controller,:action)
def show_lookup_links
@links=[]
@links << Link.new("Channels", "/lookup/channel", "index")
@links << Link.new("Password durations",
"/lookup/password_duration", "index")
render :layout=>false
end
end
Now: the list of links will need to change according to the user''s
permission. So, there is quite a lot of logic involved here.
What are my options, if I don''t want to use components?
The only solution I ca...