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

29 lines
642 B
Ruby

AsciiIo::Application.routes.draw do
resources :asciicasts, :path => 'a'
match "/~:nickname" => "users#show", :as => :profile
match "/browse" => "asciicasts#index", :as => :browse
match "/installation" => "static_pages#show", :page => 'installation'
match "/auth/:provider/callback" => "sessions#create"
match "/auth/failure" => "sessions#failure"
match "/login" => "sessions#new"
match "/logout" => "sessions#destroy"
match "/connect/:user_token" => "user_tokens#create"
namespace :api do
resources :comments
resources :asciicasts do
resources :comments
end
end
root :to => 'home#show'
end