You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/config/routes.rb

43 lines
1.2 KiB
Ruby

Rails.application.routes.draw do
get "/browse" => "asciicasts#index", :as => :browse
get "/browse/:category" => "asciicasts#index", :as => :category
get '/a/:id.js' => 'api/asciicasts#show', format: false, defaults: { format: 'js' }
resources :asciicasts, path: 'a' do
member do
get '/raw' => 'api/asciicasts#show'
get :example
end
end
get "/~:username" => "users#show", :as => :profile
namespace :api do
resources :asciicasts
end
get "/docs" => "docs#show", :page => 'getting-started', :as => :docs_index
get "/docs/:page" => "docs#show", :as => :docs
get "/auth/browser_id/callback" => "sessions#create"
get "/auth/:provider/callback" => "account_merges#create"
get "/auth/failure" => "sessions#failure"
get "/login" => "sessions#new"
get "/logout" => "sessions#destroy"
get "/connect/:api_token" => "api_tokens#create"
resource :user
root 'home#show'
get '/about' => 'pages#show', page: :about, as: :about
get '/privacy' => 'pages#show', page: :privacy, as: :privacy
get '/tos' => 'pages#show', page: :tos, as: :tos
get '/contributing' => 'pages#show', page: :contributing, as: :contributing
end