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

40 lines
1011 B
Ruby

Asciinema::Application.routes.draw do
get "/browse" => "asciicasts#index", :as => :browse
get "/browse/popular" => "asciicasts#popular", :as => :popular
resources :asciicasts, :path => 'a' do
member do
get :raw
end
end
13 years ago
get "/~:nickname" => "users#show", :as => :profile
13 years ago
get "/docs" => "docs#show", :page => 'gettingstarted', :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/:user_token" => "user_tokens#create"
resource :user
namespace :api do
resources :asciicasts
end
root 'home#show'
mount JasmineRails::Engine => "/specs" unless Rails.env.production?
get '/test/widget/:id' => 'test_widget#show' if Rails.env.test?
match '*a', :via => [:get, :post], :to => 'application#not_found'
end