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

41 lines
1.1 KiB
Ruby

Rails.application.routes.draw do
get "/browse" => "asciicasts#index", :as => :browse
get "/browse/:category" => "asciicasts#index", :as => :category
get '/a/:id.js' => redirect(ActionController::Base.helpers.asset_path("widget.js"), status: 302)
resources :asciicasts, path: 'a' do
member do
get '/raw' => 'asciicasts#embed' # legacy route, probably no longer used anywhere
get :embed
get :example
end
end
get "/u/:id" => "users#show", as: :unnamed_user
get "/~:username" => "users#show", as: :public_profile
get "/oembed" => "oembed#show", as: :oembed
get "/login/new" => redirect("/not-gonna-happen"), as: :new_login # define new_login_path
get "/logout" => "sessions#destroy"
resources :api_tokens, only: [:destroy]
resource :user
resource :username do
get :skip
end
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
get '/contact' => 'pages#show', page: :contact, as: :contact
end