Guest User

Untitled

a guest
Jul 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <%= link_to("Home", { :controller => :home, :action => :index }) %>
  2.  
  3. namespace :admin do
  4. resources :users
  5. end
  6.  
  7. <%= link_to("Home", { :controller => "admin/home", :action => :index }) %>
  8.  
  9. match '/forums' => 'forums#index', :as => :forums
  10.  
  11. <li class="menuitem"><%= link_to("Forums", forums_path()) %></li>
Add Comment
Please, Sign In to add comment