From 84412863dca23a73c059c7041559ba1b0e4e1998 Mon Sep 17 00:00:00 2001 From: Jonne Hass Date: Sat, 30 Apr 2011 06:51:37 -0700 Subject: [PATCH] (minor change) move bookmarklet route to the right place --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index fadf4b057..fc047c5e3 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -13,6 +13,7 @@ Diaspora::Application.routes.draw do resources :status_messages, :only => [:new, :create, :destroy, :show] get 'p/:id' => 'posts#show', :as => 'post' + get 'bookmarklet' => 'status_messages#bookmarklet' resources :photos, :except => [:index] do put 'make_profile_photo' => :make_profile_photo @@ -67,7 +68,6 @@ Diaspora::Application.routes.draw do get 'add_invites' => :add_invites, :as => 'add_invites' end - get 'bookmarklet' => 'status_messages#bookmarklet' resource :profile resources :requests, :only => [:destroy, :create]