summaryrefslogtreecommitdiff
path: root/app/helpers/ci/pipeline_editor_helper.rb
blob: a71b0f4a83ad421b54dd0bf2891a9806d7bfdc83 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Ci
  module PipelineEditorHelper
    include ChecksCollaboration

    def can_view_pipeline_editor?(project)
      can_collaborate_with_project?(project)
    end
  end
end