]> git.openstreetmap.org Git - rails.git/blob - app/controllers/site_controller.rb
adding the controller code to be able to get a specific version of a node, way or...
[rails.git] / app / controllers / site_controller.rb
1 class SiteController < ApplicationController
2   before_filter :authorize_web
3   before_filter :require_user, :only => [:edit]
4
5   def export
6     render :action => 'index'
7   end
8 end