projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add 'tools/arvbox/' from commit 'd3d368758db1f4a9fa5b89f77b5ee61d68ef5b72'
[arvados.git]
/
apps
/
workbench
/
app
/
controllers
/
links_controller.rb
1
class LinksController < ApplicationController
2
def show
3
if @object.link_class == 'name' and
4
Collection == ArvadosBase::resource_class_for_uuid(@object.head_uuid)
5
return redirect_to collection_path(@object.uuid)
6
end
7
super
8
end
9
end