debian-mirror-gitlab/lib/gitlab/graphql/representation/tree_entry.rb
2019-09-04 21:01:54 +05:30

32 lines
635 B
Ruby

# frozen_string_literal: true
module Gitlab
module Graphql
module Representation
class TreeEntry < SimpleDelegator
class << self
def decorate(entries, repository)
return if entries.nil?
entries.map do |entry|
if entry.is_a?(TreeEntry)
entry
else
self.new(entry, repository)
end
end
end
end
attr_accessor :repository
def initialize(raw_entry, repository)
@repository = repository
super(raw_entry)
end
end
end
end
end