summaryrefslogtreecommitdiff
path: root/lib/gitlab/quick_actions/common_actions.rb
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