diff --git a/config/routes.rb b/config/routes.rb index 45e1942e0..47f98ed93 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -7,6 +7,7 @@ Diaspora::Application.routes.draw do |map| resources :requests match 'warzombie', :to => "dashboards#warzombie" + match 'zombiefriends', :to => "dashboards#zombiefriends" #routes for devise, not really sure you will need to mess with this in the future, lets put default, #non mutable stuff in anohter file diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake index 323496225..dbcd29617 100644 --- a/lib/tasks/db.rake +++ b/lib/tasks/db.rake @@ -20,7 +20,7 @@ namespace :db do task :accept_requests do puts "Accepting all friend requests for #{Rails.env}" - require 'db/seeds/accept' + require 'db/seeds/request' end desc 'Delete the collections in the current RAILS_ENV database'