]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/browse_controller.rb
adding changeset stuff for the data browser
[rails.git] / app / controllers / browse_controller.rb
index 408846c96a2c5fbb1df1112294a961a15026bf4e..94a8a09a0c49b1a5f9d30466aed8c7927fda20ae 100644 (file)
@@ -112,4 +112,15 @@ class BrowseController < ApplicationController
       render :action => "not_found", :status => :not_found
     end
   end
+  
+  def changeset
+    begin
+      @changeset = Changeset.find(params[:id])
+      
+      @title = "Changeset | #{@changeset.id}"
+    rescue ActiveRecord::RecordNotFound
+      @type = "changeset"
+      render :action => "not_found", :status => :not_found
+    end
+  end
 end