Sha256: 6631ff4e0dd861362a82602e4bbecf59bcf27e7607aeec99c3c919d35aac2705

Contents?: true

Size: 1.5 KB

Versions: 17

Compression:

Stored size: 1.5 KB

Contents

Avo::Engine.routes.draw do
  root "home#index"

  get "resources", to: redirect("/admin")
  post "/rails/active_storage/direct_uploads", to: "/active_storage/direct_uploads#create"

  scope "avo_api", as: "avo_api" do
    get "/search", to: "search#index"
    get "/:resource_name/search", to: "search#show"
    post "/resources/:resource_name/:id/attachments/", to: "attachments#create"
  end

  get "failed_to_load", to: "home#failed_to_load"

  scope "resources", as: "resources" do
    # Attachments
    get "/:resource_name/:id/active_storage_attachments/:attachment_name/:signed_attachment_id", to: "attachments#show"
    delete "/:resource_name/:id/active_storage_attachments/:attachment_name/:signed_attachment_id", to: "attachments#destroy"

    # Actions
    get "/:resource_name(/:id)/actions/:action_id", to: "actions#show"
    post "/:resource_name(/:id)/actions/:action_id", to: "actions#handle"

    # Generate resource routes as below:
    # resources :posts
    Avo::DynamicRouter::routes(self)

    # Relations
    get "/:resource_name/:id/:related_name/new", to: "relations#new", as: "associations_new"
    get "/:resource_name/:id/:related_name/", to: "relations#index", as: "associations_index"
    get "/:resource_name/:id/:related_name/:related_id", to: "relations#show", as: "associations_show"
    post "/:resource_name/:id/:related_name", to: "relations#create", as: "associations_create"
    delete "/:resource_name/:id/:related_name/:related_id", to: "relations#destroy", as: "associations_destroy"
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
avo-1.23.0 config/routes.rb
avo-1.22.4 config/routes.rb
avo-1.22.3 config/routes.rb
avo-1.22.2 config/routes.rb
avo-1.22.1 config/routes.rb
avo-1.22.1.pre.2 config/routes.rb
avo-1.22.1.pre.1 config/routes.rb
avo-1.22.0 config/routes.rb
avo-1.22.0.pre.1 config/routes.rb
avo-1.21.1.pre.1 config/routes.rb
avo-1.21.0 config/routes.rb
avo-1.20.2.pre.2 config/routes.rb
avo-1.20.2.pre.1 config/routes.rb
avo-1.21.0.pre.1 config/routes.rb
avo-1.20.1 config/routes.rb
avo-1.19.1.pre.11 config/routes.rb
avo-1.19.1.pre.10 config/routes.rb