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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r--lib/api/entities.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb
index ae23d3c9347..95d57b49453 100644
--- a/lib/api/entities.rb
+++ b/lib/api/entities.rb
@@ -755,6 +755,12 @@ module API
end
end
+ class MergeRequestContextCommit < Grape::Entity
+ expose :sha, :relative_order, :new_file, :renamed_file,
+ :deleted_file, :too_large, :a_mode, :b_mode, :new_path, :old_path,
+ :diff, :binary
+ end
+
class SSHKey < Grape::Entity
expose :id, :title, :key, :created_at
end