Sha256: 275e1f8044ac70644637fd3c3155635f159ef242925e65f7ca082ecf7cda01f7

Contents?: true

Size: 872 Bytes

Versions: 3

Compression:

Stored size: 872 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
    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

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcdevworks_tutorials-13.0.2 config/routes.rb
phcdevworks_tutorials-13.0.1 config/routes.rb
phcdevworks_tutorials-13.0.0 config/routes.rb