asciinema.org/config/routes.rb

33 lines
730 B
Ruby
Raw Normal View History

2011-11-23 20:41:25 +00:00
AsciiIo::Application.routes.draw do
2012-03-01 23:25:55 +00:00
2012-03-04 21:44:04 +00:00
resources :asciicasts, :path => 'a'
2011-11-23 21:30:09 +00:00
2012-03-04 22:44:36 +00:00
match "/~:nickname" => "users#show", :as => :profile
match "/browse" => "asciicasts#index", :as => :browse
2012-01-14 20:26:49 +00:00
2012-04-02 16:46:47 +00:00
match "/manual" => "static_pages#show", :page => 'manual'
2012-03-04 21:44:04 +00:00
match "/auth/:provider/callback" => "sessions#create"
match "/auth/failure" => "sessions#failure"
match "/login" => "sessions#new"
match "/logout" => "sessions#destroy"
2012-03-04 19:30:26 +00:00
match "/connect/:user_token" => "user_tokens#create"
2012-04-09 12:42:22 +00:00
resource :user, :only => [:create, :edit, :update]
2012-03-05 23:25:21 +00:00
2012-03-04 22:07:45 +00:00
namespace :api do
resources :comments
resources :asciicasts do
resources :comments
end
end
2012-03-04 21:44:04 +00:00
root :to => 'home#show'
2012-04-29 08:47:33 +00:00
match '*a', :to => 'application#not_found'
end