Sha256: 491804fc581c251cc4c0f05a2a2dbaae1354834321e09d52e73f737e975467ec

Contents?: true

Size: 492 Bytes

Versions: 10

Compression:

Stored size: 492 Bytes

Contents

Tenon::Engine.routes.draw do
  resources :item_versions, only: [:create, :new, :index]
  get 'item_versions/:item_type(/:item_id)',
      controller: :item_versions,
      action: :index,
      as: :list_item_versions

  resources :assets, path: 'asset-library', except: [:show] do
    post 'encode_notify', on: :collection
    get :crop, on: :member
  end

  resources :item_assets, except: [:index, :show]

  resources :styleguides, only: [:index]

  root to: Tenon.config.routing.root
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tenon-2.1.0 config/routes.rb
tenon-2.0.8 config/routes.rb
tenon-2.0.7 config/routes.rb
tenon-2.0.6 config/routes.rb
tenon-2.0.5 config/routes.rb
tenon-2.0.4 config/routes.rb
tenon-2.0.3 config/routes.rb
tenon-2.0.2 config/routes.rb
tenon-2.0.1 config/routes.rb
tenon-2.0.0 config/routes.rb