move stuff around

This commit is contained in:
Steve Coast 2007-04-07 19:00:23 +00:00
parent 8edf08405d
commit 6fe1a503b6
5 changed files with 10 additions and 6 deletions

View file

@ -2,11 +2,6 @@ class SiteController < ApplicationController
before_filter :authorize_web
before_filter :require_user, :only => [:edit]
def search
@tags = WayTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", params[:query][:query].to_s] )
end
def goto_way
way = Way.find(params[:id])

View file

@ -1,2 +1,5 @@
class WaySegmentController < ApplicationController
end

View file

@ -1,2 +1,8 @@
class WayTagController < ApplicationController
def search
@tags = WayTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", params[:query][:query].to_s] )
end
end