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

25 lines
622 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class CommitDetail < Commit
2022-09-01 20:07:04 +05:30
include ::API::Helpers::Presentable
expose :stats, using: Entities::CommitStats, if: :include_stats
expose :status_for, as: :status
2020-03-13 15:44:24 +05:30
expose :project_id
expose :last_pipeline do |commit, options|
pipeline = commit.last_pipeline if can_read_pipeline?
2020-10-24 23:57:45 +05:30
::API::Entities::Ci::PipelineBasic.represent(pipeline, options)
2020-03-13 15:44:24 +05:30
end
private
def can_read_pipeline?
Ability.allowed?(options[:current_user], :read_pipeline, object.last_pipeline)
end
end
end
end