debian-mirror-gitlab/app/helpers/ci/pipeline_editor_helper.rb
2021-04-17 20:07:23 +05:30

11 lines
210 B
Ruby

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