Guest User

Untitled

a guest
Nov 9th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.25 KB | None | 0 0
  1. Rails.application.routes.draw do
  2.   resources :categories, only: [:show, :index]
  3.   resources :forums, only: [:show, :index]
  4.     namespace :admin do
  5.         resources :categories, :forums
  6.     end
  7.   root 'forums#index'
  8.   get "admin" => "admin/index#index"
  9. end
Add Comment
Please, Sign In to add comment