Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tree_root_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23b65aa4a4cc3e8c005f3566d3de24a9841e3497 (plain)
1
2
3
4
5
6
7
8
# TODO: Inherit from TreeEntity, when `Tree` implements `id` and `name` like `Gitlab::Git::Tree`.
class TreeRootEntity < Grape::Entity
  expose :path
  
  expose :trees, using: TreeEntity
  expose :blobs, using: BlobEntity
  expose :submodules, using: SubmoduleEntity
end