debian-mirror-gitlab/lib/api/entities/tree_object.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
563 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class TreeObject < Grape::Entity
2023-01-13 00:05:48 +05:30
expose :id, documentation: { example: 'a1e8f8d745cc87e3a9248358d9352bb7f9a0aeba' }
expose :name, documentation: { example: 'html' }
expose :type, documentation: { example: 'tree' }
expose :path, documentation: { example: 'files/html' }
2020-03-13 15:44:24 +05:30
2023-01-13 00:05:48 +05:30
expose :mode, documentation: { example: '040000' } do |obj, options|
2020-03-13 15:44:24 +05:30
filemode = obj.mode
filemode = "0" + filemode if filemode.length < 6
filemode
end
end
end
end