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

17 lines
399 B
Ruby

AsciiIo::Application.routes.draw do
13 years ago
resources :asciicasts
match ':id' => 'asciicasts#show', :constraints => { :id => /\d+/ }
13 years ago
namespace :api do
resources :asciicasts
end
match "/auth/:provider/callback" => "sessions#create"
match "/auth/failure" => "sessions#failure"
match "/login" => "sessions#new"
match "/logout" => "sessions#destroy"
13 years ago
root :to => 'asciicasts#index'
end