# HG changeset patch # User Edho Arief # Date 1349291386 -25200 # Node ID a81fb558f954ec5e215d786f1fa82eaf6d3448bc # Parent a930c717654c54844d706a1248be6ba3e2fb9f4f root_path is new_paste_path. Not aliased because it's :effort:. diff -r a930c717654c -r a81fb558f954 app/views/pastes/show.html.erb --- a/app/views/pastes/show.html.erb Thu Oct 04 02:08:11 2012 +0700 +++ b/app/views/pastes/show.html.erb Thu Oct 04 02:09:46 2012 +0700 @@ -5,4 +5,4 @@
<%= @paste.paste %>

-<%= link_to 'Raw', paste_path(@paste, :txt) %> | <%= link_to 'New paste based on this', new_paste_path(:base => @paste.id) %> | <%= link_to 'More Paste', new_paste_path %> +<%= link_to 'Raw', paste_path(@paste, :txt) %> | <%= link_to 'New paste based on this', root_path(:base => @paste.id) %> | <%= link_to 'More Paste', root_path %> diff -r a930c717654c -r a81fb558f954 config/routes.rb --- a/config/routes.rb Thu Oct 04 02:08:11 2012 +0700 +++ b/config/routes.rb Thu Oct 04 02:09:46 2012 +0700 @@ -1,4 +1,4 @@ Zeropaste::Application.routes.draw do - resources :pastes, :only => [:show, :new, :create], :path => '/' + resources :pastes, :only => [:show, :create], :path => '/' root :to => 'pastes#new' end