class SiteController < ApplicationController
before_filter :authorize_web
+ before_filter :set_locale
before_filter :require_user, :only => [:edit]
-
- def search
- @tags = WayTag.find(:all, :conditions => ["match(v) against (?)", params[:query][:query].to_s] )
+ def export
+ render :action => 'index'
end
-
end