summaryrefslogtreecommitdiff
path: root/app/serializers/blob_entity.rb
blob: ad039a2623df52b16d7cdc2fcdcdbbcf67d737d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class BlobEntity < Grape::Entity
  include RequestAwareEntity

  expose :id, :path, :name, :mode

  expose :icon do |blob|
    IconsHelper.file_type_icon_class('file', blob.mode, blob.name)
  end

  expose :url do |blob|
    project_blob_path(request.project, File.join(request.ref, blob.path))
  end
end