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
982 B
Ruby

AsciiIo::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
get "/~:nickname" => "users#show", :as => :profile
get "/docs" => "docs#show", :page => 'record'
get "/docs/:page" => "docs#show", :as => :docs
get "/auth/:provider/callback" => "sessions#create"
get "/auth/failure" => "sessions#failure"
get "/login" => "sessions#new"
get "/logout" => "sessions#destroy"
get "/connect/:user_token" => "user_tokens#create"
resource :user, :only => [:create, :edit, :update]
namespace :api do
resources :comments, :only => :destroy
resources :asciicasts do
resources :comments, :only => [:index, :create]
end
end
root :to => 'home#show'
mount JasmineRails::Engine => "/specs" unless Rails.env.production?
match '*a', :to => 'application#not_found'
end