Welcome to mirror list, hosted at ThFree Co, Russian Federation.

common_actions.rb « quick_actions « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d2732d4826ed7ab055946bfba8c1f283098e136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Gitlab
  module QuickActions
    module CommonActions
      extend ActiveSupport::Concern
      include Gitlab::QuickActions::Dsl

      included do
        # This is a dummy command, so that it appears in the autocomplete commands
        desc 'CC'
        params '@user'
        command :cc
      end
    end
  end
end