Method: PublishMyData::ResourcesController#id
- Defined in:
- app/controllers/publish_my_data/resources_controller.rb
#id ⇒ Object
linked data dereferencing: for id’s just redirect to the doc. example.com/id/blah
54 55 56 57 58 59 60 |
# File 'app/controllers/publish_my_data/resources_controller.rb', line 54 def id respond_to do |format| format.any(:html, :rdf, :ttl, :nt, :json) do |format| redirect_to "/doc/#{params[:path]}", :status=> 303 end end end |