18 lines
359 B
Ruby
18 lines
359 B
Ruby
|
# 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
|