X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/613e88c4a8728c2f1ab8a2fb9338762b947eac6a..2e2f2124728ca755b2db8f83f022eaea24b647f0:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index eebb23301..daf8fead7 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -1,2 +1,9 @@ class SiteController < ApplicationController + before_filter :authorize_web + before_filter :set_locale + before_filter :require_user, :only => [:edit] + + def export + render :action => 'index' + end end