blob: 9f1b485347fbfccf35d3c53b19f875a0bac3b42e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class TreeEntity < Grape::Entity
include RequestAwareEntity
expose :id, :path, :name, :mode
expose :icon do |tree|
IconsHelper.file_type_icon_class('folder', tree.mode, tree.name)
end
expose :url do |tree|
project_tree_path(request.project, File.join(request.ref, tree.path))
end
end
|