Savage Beast Plugin: how to change the forum_home_path?

Where can I change the forum_home_path link, so that it goes to a page that I specify.

This is the full context from one of the topics views: <%= link_to _('Forums'), forum_home_path %> →

If anyone knows off hand, I'd really appreciate it! Thanks in advance!!

LAB

LAB -

Where can I change the forum_home_path link, so that it goes to a page that I specify.

This is the full context from one of the topics views: <%= link_to _('Forums'), forum_home_path %> →

If anyone knows off hand, I'd really appreciate it! Thanks in advance!!

LAB

just create a route

first get the routes form the plugin:

   #get routes for beast    map.from_plugin :savage_beast

   map.forum_home '/forums', :controller => 'forums', :action => 'index'

the demo app should answer most other questions you'll have:

http://svn.nnovation.ca/svn/savage_beast_demo/

have fun.

Jodi