Sha256: a0855082a2a5e1ea56570f045a8cf0a6d6511fc8300f12d27a5a1d7cecd349e8
Contents?: true
Size: 975 Bytes
Versions: 11
Compression:
Stored size: 975 Bytes
Contents
PhcdevworksTutorials::Engine.routes.draw do # Tutorial Routes namespace :tutorial do resources :posts, class_name: "Tutorial::Post" do resources :steps, class_name: "Tutorial::Step" end resources :categories, class_name: "Tutorial::Category" end # Command Routes namespace :command do resources :posts, class_name: "Command::Post" do resources :items, class_name: "Command::Item" end end # Frontend Routes namespace :blog do resources :tutorials, only: [:index, :show] resources :commands, only: [:index, :show] end # API Routes namespace :api, :path => "", :constraints => {:subdomain => "tutorial_api"} do namespace :v1 do resources :posts, defaults: {format: "json"} resources :categories, defaults: {format: "json"} end end # Mount Routes mount PhcdevworksAccounts::Engine, :at => "/" end
Version data entries
11 entries across 11 versions & 1 rubygems