summaryrefslogtreecommitdiff
path: root/lib/api/entities/package/pipeline.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/entities/package/pipeline.rb')
-rw-r--r--lib/api/entities/package/pipeline.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/api/entities/package/pipeline.rb b/lib/api/entities/package/pipeline.rb
new file mode 100644
index 00000000000..e91a12e47fa
--- /dev/null
+++ b/lib/api/entities/package/pipeline.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+module API
+ module Entities
+ class Package < Grape::Entity
+ class Pipeline < ::API::Entities::PipelineBasic
+ expose :user, using: ::API::Entities::UserBasic
+ end
+ end
+ end
+end