routes.rb 133 Bytes
Newer Older
Jasmine Principe's avatar
Jasmine Principe committed
1 2 3 4 5 6 7 8
Rails.application.routes.draw do
	root(to: "pages#index")
  resources :artists

  namespace :admin do
  resources :artists
  end
end