Sha256: c010fab6e197d29859f15ebdb5cdf27ef4e3e4ac71d8b6c09a1387f3b50f3ac5

Contents?: true

Size: 305 Bytes

Versions: 3

Compression:

Stored size: 305 Bytes

Contents

Rails.application.routes.draw do
  namespace :admin do

    resources :pages, :only => [ :index, :edit, :update, :destroy ] do
      resources :page_parts, :only => [ :update, :destroy ]
    end

    resources :tags, :only => :index, :format => :json    
    resources :users, :except => [:show]
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fullstack-cms-0.1.7 config/routes.rb
fullstack-cms-0.1.6 config/routes.rb
fullstack-cms-0.1.5 config/routes.rb