X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a42dc9f4826da27b21fa1f66ea6318110afaa0b2..8c8bb42cf63a87239fe9c6257b7d2a6bcab39350:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index d01b86bba..4b22e46fd 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -1,5 +1,8 @@ class SiteController < ApplicationController - def index + before_filter :authorize_web + before_filter :require_user, :only => [:edit] + def export + render :action => 'index' end end