gitlab-org--gitlab-foss/app/helpers/ci/pipeline_editor_helper.rb

12 lines
210 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Ci
module PipelineEditorHelper
include ChecksCollaboration
def can_view_pipeline_editor?(project)
can_collaborate_with_project?(project)
end
end
end