debian-mirror-gitlab/app/helpers/ci/pipeline_editor_helper.rb

12 lines
210 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
module Ci
module PipelineEditorHelper
include ChecksCollaboration
def can_view_pipeline_editor?(project)
2021-04-17 20:07:23 +05:30
can_collaborate_with_project?(project)
2021-01-29 00:20:46 +05:30
end
end
end